Skip to contents

This function is mostly designed for exploring the API, and is unlikely to be suitable for long term production use.

You can set the number of rows to preview using the n_max parameter. This uses the n_max from readr::read_csv() under the hood.

As there are no IDs involved, this is brittle and code relying on this function will likely break whenever there is renaming of variables or items in the data.

It is recommended to take the time to set up custom queries using the query_dataset() function instead.

If you are using this function for more than exploratory purposes, make sure you subscribe to the data set you're downloading and then keep track of any updates to the data.

Usage

preview_dataset(
  dataset_id,
  dataset_version = NULL,
  api_version = NULL,
  ees_environment = default_ees_environment(),
  n_max = 10,
  verbose = FALSE
)

Arguments

dataset_id

ID of data set

dataset_version

Version number of data set

api_version

EES API version

ees_environment

EES ees_environment to connect to: "dev", "test", "preprod" or "prod"

n_max

maximum number of rows to preview, 10 by default, Inf will get all available rows

verbose

Run with additional contextual messaging, logical, default = FALSE

Value

data.frame

Details

This gives a super quick way to just fetch the file in a human readable format.

Examples

# Preview first 10 rows
preview_dataset(example_id("dataset"))
#>    time_period time_identifier   time_frame geographic_level country_code
#> 1         2026         Week 21 Year to date         National    E92000001
#> 2         2026         Week 21 Year to date         National    E92000001
#> 3         2026         Week 21 Year to date         National    E92000001
#> 4         2026         Week 21 Year to date         National    E92000001
#> 5         2026         Week 21 Year to date         Regional    E92000001
#> 6         2026         Week 21 Year to date         Regional    E92000001
#> 7         2026         Week 21 Year to date         Regional    E92000001
#> 8         2026         Week 21 Year to date         Regional    E92000001
#> 9         2026         Week 21 Year to date  Local authority    E92000001
#> 10        2026         Week 21 Year to date  Local authority    E92000001
#>    country_name region_code region_name new_la_code    la_name old_la_code
#> 1       England        <NA>        <NA>        <NA>       <NA>          NA
#> 2       England        <NA>        <NA>        <NA>       <NA>          NA
#> 3       England        <NA>        <NA>        <NA>       <NA>          NA
#> 4       England        <NA>        <NA>        <NA>       <NA>          NA
#> 5       England   E12000001  North East        <NA>       <NA>          NA
#> 6       England   E12000001  North East        <NA>       <NA>          NA
#> 7       England   E12000001  North East        <NA>       <NA>          NA
#> 8       England   E12000001  North East        <NA>       <NA>          NA
#> 9       England   E12000001  North East   E06000001 Hartlepool         805
#> 10      England   E12000001  North East   E06000001 Hartlepool         805
#>    education_phase persistent_absence_percent
#> 1      All schools                      18.07
#> 2          Primary                      13.18
#> 3        Secondary                      22.93
#> 4          Special                      34.78
#> 5      All schools                      19.24
#> 6          Primary                      13.78
#> 7        Secondary                      24.43
#> 8          Special                      33.11
#> 9      All schools                      19.21
#> 10         Primary                      13.33

# Get 2 rows
preview_dataset(example_id("dataset"), n_max = 2)
#>   time_period time_identifier   time_frame geographic_level country_code
#> 1        2026         Week 21 Year to date         National    E92000001
#> 2        2026         Week 21 Year to date         National    E92000001
#>   country_name region_code region_name new_la_code la_name old_la_code
#> 1      England          NA          NA          NA      NA          NA
#> 2      England          NA          NA          NA      NA          NA
#>   education_phase persistent_absence_percent
#> 1     All schools                      18.07
#> 2         Primary                      13.18

# Get all rows
preview_dataset(example_id("dataset"), n_max = Inf)
#>      time_period time_identifier   time_frame geographic_level country_code
#> 1           2026         Week 21 Year to date         National    E92000001
#> 2           2026         Week 21 Year to date         National    E92000001
#> 3           2026         Week 21 Year to date         National    E92000001
#> 4           2026         Week 21 Year to date         National    E92000001
#> 5           2026         Week 21 Year to date         Regional    E92000001
#> 6           2026         Week 21 Year to date         Regional    E92000001
#> 7           2026         Week 21 Year to date         Regional    E92000001
#> 8           2026         Week 21 Year to date         Regional    E92000001
#> 9           2026         Week 21 Year to date  Local authority    E92000001
#> 10          2026         Week 21 Year to date  Local authority    E92000001
#> 11          2026         Week 21 Year to date  Local authority    E92000001
#> 12          2026         Week 21 Year to date  Local authority    E92000001
#> 13          2026         Week 21 Year to date  Local authority    E92000001
#> 14          2026         Week 21 Year to date  Local authority    E92000001
#> 15          2026         Week 21 Year to date  Local authority    E92000001
#> 16          2026         Week 21 Year to date  Local authority    E92000001
#> 17          2026         Week 21 Year to date  Local authority    E92000001
#> 18          2026         Week 21 Year to date  Local authority    E92000001
#> 19          2026         Week 21 Year to date  Local authority    E92000001
#> 20          2026         Week 21 Year to date  Local authority    E92000001
#> 21          2026         Week 21 Year to date  Local authority    E92000001
#> 22          2026         Week 21 Year to date  Local authority    E92000001
#> 23          2026         Week 21 Year to date  Local authority    E92000001
#> 24          2026         Week 21 Year to date  Local authority    E92000001
#> 25          2026         Week 21 Year to date  Local authority    E92000001
#> 26          2026         Week 21 Year to date  Local authority    E92000001
#> 27          2026         Week 21 Year to date  Local authority    E92000001
#> 28          2026         Week 21 Year to date  Local authority    E92000001
#> 29          2026         Week 21 Year to date  Local authority    E92000001
#> 30          2026         Week 21 Year to date  Local authority    E92000001
#> 31          2026         Week 21 Year to date  Local authority    E92000001
#> 32          2026         Week 21 Year to date  Local authority    E92000001
#> 33          2026         Week 21 Year to date  Local authority    E92000001
#> 34          2026         Week 21 Year to date  Local authority    E92000001
#> 35          2026         Week 21 Year to date  Local authority    E92000001
#> 36          2026         Week 21 Year to date  Local authority    E92000001
#> 37          2026         Week 21 Year to date  Local authority    E92000001
#> 38          2026         Week 21 Year to date  Local authority    E92000001
#> 39          2026         Week 21 Year to date  Local authority    E92000001
#> 40          2026         Week 21 Year to date  Local authority    E92000001
#> 41          2026         Week 21 Year to date  Local authority    E92000001
#> 42          2026         Week 21 Year to date  Local authority    E92000001
#> 43          2026         Week 21 Year to date  Local authority    E92000001
#> 44          2026         Week 21 Year to date  Local authority    E92000001
#> 45          2026         Week 21 Year to date  Local authority    E92000001
#> 46          2026         Week 21 Year to date  Local authority    E92000001
#> 47          2026         Week 21 Year to date  Local authority    E92000001
#> 48          2026         Week 21 Year to date  Local authority    E92000001
#> 49          2026         Week 21 Year to date  Local authority    E92000001
#> 50          2026         Week 21 Year to date  Local authority    E92000001
#> 51          2026         Week 21 Year to date  Local authority    E92000001
#> 52          2026         Week 21 Year to date  Local authority    E92000001
#> 53          2026         Week 21 Year to date  Local authority    E92000001
#> 54          2026         Week 21 Year to date  Local authority    E92000001
#> 55          2026         Week 21 Year to date  Local authority    E92000001
#> 56          2026         Week 21 Year to date  Local authority    E92000001
#> 57          2026         Week 21 Year to date         Regional    E92000001
#> 58          2026         Week 21 Year to date         Regional    E92000001
#> 59          2026         Week 21 Year to date         Regional    E92000001
#> 60          2026         Week 21 Year to date         Regional    E92000001
#> 61          2026         Week 21 Year to date  Local authority    E92000001
#> 62          2026         Week 21 Year to date  Local authority    E92000001
#> 63          2026         Week 21 Year to date  Local authority    E92000001
#> 64          2026         Week 21 Year to date  Local authority    E92000001
#> 65          2026         Week 21 Year to date  Local authority    E92000001
#> 66          2026         Week 21 Year to date  Local authority    E92000001
#> 67          2026         Week 21 Year to date  Local authority    E92000001
#> 68          2026         Week 21 Year to date  Local authority    E92000001
#> 69          2026         Week 21 Year to date  Local authority    E92000001
#> 70          2026         Week 21 Year to date  Local authority    E92000001
#> 71          2026         Week 21 Year to date  Local authority    E92000001
#> 72          2026         Week 21 Year to date  Local authority    E92000001
#> 73          2026         Week 21 Year to date  Local authority    E92000001
#> 74          2026         Week 21 Year to date  Local authority    E92000001
#> 75          2026         Week 21 Year to date  Local authority    E92000001
#> 76          2026         Week 21 Year to date  Local authority    E92000001
#> 77          2026         Week 21 Year to date  Local authority    E92000001
#> 78          2026         Week 21 Year to date  Local authority    E92000001
#> 79          2026         Week 21 Year to date  Local authority    E92000001
#> 80          2026         Week 21 Year to date  Local authority    E92000001
#> 81          2026         Week 21 Year to date  Local authority    E92000001
#> 82          2026         Week 21 Year to date  Local authority    E92000001
#> 83          2026         Week 21 Year to date  Local authority    E92000001
#> 84          2026         Week 21 Year to date  Local authority    E92000001
#> 85          2026         Week 21 Year to date  Local authority    E92000001
#> 86          2026         Week 21 Year to date  Local authority    E92000001
#> 87          2026         Week 21 Year to date  Local authority    E92000001
#> 88          2026         Week 21 Year to date  Local authority    E92000001
#> 89          2026         Week 21 Year to date  Local authority    E92000001
#> 90          2026         Week 21 Year to date  Local authority    E92000001
#> 91          2026         Week 21 Year to date  Local authority    E92000001
#> 92          2026         Week 21 Year to date  Local authority    E92000001
#> 93          2026         Week 21 Year to date  Local authority    E92000001
#> 94          2026         Week 21 Year to date  Local authority    E92000001
#> 95          2026         Week 21 Year to date  Local authority    E92000001
#> 96          2026         Week 21 Year to date  Local authority    E92000001
#> 97          2026         Week 21 Year to date  Local authority    E92000001
#> 98          2026         Week 21 Year to date  Local authority    E92000001
#> 99          2026         Week 21 Year to date  Local authority    E92000001
#> 100         2026         Week 21 Year to date  Local authority    E92000001
#> 101         2026         Week 21 Year to date  Local authority    E92000001
#> 102         2026         Week 21 Year to date  Local authority    E92000001
#> 103         2026         Week 21 Year to date  Local authority    E92000001
#> 104         2026         Week 21 Year to date  Local authority    E92000001
#> 105         2026         Week 21 Year to date  Local authority    E92000001
#> 106         2026         Week 21 Year to date  Local authority    E92000001
#> 107         2026         Week 21 Year to date  Local authority    E92000001
#> 108         2026         Week 21 Year to date  Local authority    E92000001
#> 109         2026         Week 21 Year to date  Local authority    E92000001
#> 110         2026         Week 21 Year to date  Local authority    E92000001
#> 111         2026         Week 21 Year to date  Local authority    E92000001
#> 112         2026         Week 21 Year to date  Local authority    E92000001
#> 113         2026         Week 21 Year to date  Local authority    E92000001
#> 114         2026         Week 21 Year to date  Local authority    E92000001
#> 115         2026         Week 21 Year to date  Local authority    E92000001
#> 116         2026         Week 21 Year to date  Local authority    E92000001
#> 117         2026         Week 21 Year to date  Local authority    E92000001
#> 118         2026         Week 21 Year to date  Local authority    E92000001
#> 119         2026         Week 21 Year to date  Local authority    E92000001
#> 120         2026         Week 21 Year to date  Local authority    E92000001
#> 121         2026         Week 21 Year to date  Local authority    E92000001
#> 122         2026         Week 21 Year to date  Local authority    E92000001
#> 123         2026         Week 21 Year to date  Local authority    E92000001
#> 124         2026         Week 21 Year to date  Local authority    E92000001
#> 125         2026         Week 21 Year to date  Local authority    E92000001
#> 126         2026         Week 21 Year to date  Local authority    E92000001
#> 127         2026         Week 21 Year to date  Local authority    E92000001
#> 128         2026         Week 21 Year to date  Local authority    E92000001
#> 129         2026         Week 21 Year to date  Local authority    E92000001
#> 130         2026         Week 21 Year to date  Local authority    E92000001
#> 131         2026         Week 21 Year to date  Local authority    E92000001
#> 132         2026         Week 21 Year to date  Local authority    E92000001
#> 133         2026         Week 21 Year to date  Local authority    E92000001
#> 134         2026         Week 21 Year to date  Local authority    E92000001
#> 135         2026         Week 21 Year to date  Local authority    E92000001
#> 136         2026         Week 21 Year to date  Local authority    E92000001
#> 137         2026         Week 21 Year to date  Local authority    E92000001
#> 138         2026         Week 21 Year to date  Local authority    E92000001
#> 139         2026         Week 21 Year to date  Local authority    E92000001
#> 140         2026         Week 21 Year to date  Local authority    E92000001
#> 141         2026         Week 21 Year to date  Local authority    E92000001
#> 142         2026         Week 21 Year to date  Local authority    E92000001
#> 143         2026         Week 21 Year to date  Local authority    E92000001
#> 144         2026         Week 21 Year to date  Local authority    E92000001
#> 145         2026         Week 21 Year to date  Local authority    E92000001
#> 146         2026         Week 21 Year to date  Local authority    E92000001
#> 147         2026         Week 21 Year to date  Local authority    E92000001
#> 148         2026         Week 21 Year to date  Local authority    E92000001
#> 149         2026         Week 21 Year to date  Local authority    E92000001
#> 150         2026         Week 21 Year to date  Local authority    E92000001
#> 151         2026         Week 21 Year to date  Local authority    E92000001
#> 152         2026         Week 21 Year to date  Local authority    E92000001
#> 153         2026         Week 21 Year to date  Local authority    E92000001
#> 154         2026         Week 21 Year to date  Local authority    E92000001
#> 155         2026         Week 21 Year to date  Local authority    E92000001
#> 156         2026         Week 21 Year to date  Local authority    E92000001
#> 157         2026         Week 21 Year to date         Regional    E92000001
#> 158         2026         Week 21 Year to date         Regional    E92000001
#> 159         2026         Week 21 Year to date         Regional    E92000001
#> 160         2026         Week 21 Year to date         Regional    E92000001
#> 161         2026         Week 21 Year to date  Local authority    E92000001
#> 162         2026         Week 21 Year to date  Local authority    E92000001
#> 163         2026         Week 21 Year to date  Local authority    E92000001
#> 164         2026         Week 21 Year to date  Local authority    E92000001
#> 165         2026         Week 21 Year to date  Local authority    E92000001
#> 166         2026         Week 21 Year to date  Local authority    E92000001
#> 167         2026         Week 21 Year to date  Local authority    E92000001
#> 168         2026         Week 21 Year to date  Local authority    E92000001
#> 169         2026         Week 21 Year to date  Local authority    E92000001
#> 170         2026         Week 21 Year to date  Local authority    E92000001
#> 171         2026         Week 21 Year to date  Local authority    E92000001
#> 172         2026         Week 21 Year to date  Local authority    E92000001
#> 173         2026         Week 21 Year to date  Local authority    E92000001
#> 174         2026         Week 21 Year to date  Local authority    E92000001
#> 175         2026         Week 21 Year to date  Local authority    E92000001
#> 176         2026         Week 21 Year to date  Local authority    E92000001
#> 177         2026         Week 21 Year to date  Local authority    E92000001
#> 178         2026         Week 21 Year to date  Local authority    E92000001
#> 179         2026         Week 21 Year to date  Local authority    E92000001
#> 180         2026         Week 21 Year to date  Local authority    E92000001
#> 181         2026         Week 21 Year to date  Local authority    E92000001
#> 182         2026         Week 21 Year to date  Local authority    E92000001
#> 183         2026         Week 21 Year to date  Local authority    E92000001
#> 184         2026         Week 21 Year to date  Local authority    E92000001
#> 185         2026         Week 21 Year to date  Local authority    E92000001
#> 186         2026         Week 21 Year to date  Local authority    E92000001
#> 187         2026         Week 21 Year to date  Local authority    E92000001
#> 188         2026         Week 21 Year to date  Local authority    E92000001
#> 189         2026         Week 21 Year to date  Local authority    E92000001
#> 190         2026         Week 21 Year to date  Local authority    E92000001
#> 191         2026         Week 21 Year to date  Local authority    E92000001
#> 192         2026         Week 21 Year to date  Local authority    E92000001
#> 193         2026         Week 21 Year to date  Local authority    E92000001
#> 194         2026         Week 21 Year to date  Local authority    E92000001
#> 195         2026         Week 21 Year to date  Local authority    E92000001
#> 196         2026         Week 21 Year to date  Local authority    E92000001
#> 197         2026         Week 21 Year to date  Local authority    E92000001
#> 198         2026         Week 21 Year to date  Local authority    E92000001
#> 199         2026         Week 21 Year to date  Local authority    E92000001
#> 200         2026         Week 21 Year to date  Local authority    E92000001
#> 201         2026         Week 21 Year to date  Local authority    E92000001
#> 202         2026         Week 21 Year to date  Local authority    E92000001
#> 203         2026         Week 21 Year to date  Local authority    E92000001
#> 204         2026         Week 21 Year to date  Local authority    E92000001
#> 205         2026         Week 21 Year to date  Local authority    E92000001
#> 206         2026         Week 21 Year to date  Local authority    E92000001
#> 207         2026         Week 21 Year to date  Local authority    E92000001
#> 208         2026         Week 21 Year to date  Local authority    E92000001
#> 209         2026         Week 21 Year to date  Local authority    E92000001
#> 210         2026         Week 21 Year to date  Local authority    E92000001
#> 211         2026         Week 21 Year to date  Local authority    E92000001
#> 212         2026         Week 21 Year to date  Local authority    E92000001
#> 213         2026         Week 21 Year to date  Local authority    E92000001
#> 214         2026         Week 21 Year to date  Local authority    E92000001
#> 215         2026         Week 21 Year to date  Local authority    E92000001
#> 216         2026         Week 21 Year to date  Local authority    E92000001
#> 217         2026         Week 21 Year to date  Local authority    E92000001
#> 218         2026         Week 21 Year to date  Local authority    E92000001
#> 219         2026         Week 21 Year to date  Local authority    E92000001
#> 220         2026         Week 21 Year to date  Local authority    E92000001
#> 221         2026         Week 21 Year to date         Regional    E92000001
#> 222         2026         Week 21 Year to date         Regional    E92000001
#> 223         2026         Week 21 Year to date         Regional    E92000001
#> 224         2026         Week 21 Year to date         Regional    E92000001
#> 225         2026         Week 21 Year to date  Local authority    E92000001
#> 226         2026         Week 21 Year to date  Local authority    E92000001
#> 227         2026         Week 21 Year to date  Local authority    E92000001
#> 228         2026         Week 21 Year to date  Local authority    E92000001
#> 229         2026         Week 21 Year to date  Local authority    E92000001
#> 230         2026         Week 21 Year to date  Local authority    E92000001
#> 231         2026         Week 21 Year to date  Local authority    E92000001
#> 232         2026         Week 21 Year to date  Local authority    E92000001
#> 233         2026         Week 21 Year to date  Local authority    E92000001
#> 234         2026         Week 21 Year to date  Local authority    E92000001
#> 235         2026         Week 21 Year to date  Local authority    E92000001
#> 236         2026         Week 21 Year to date  Local authority    E92000001
#> 237         2026         Week 21 Year to date  Local authority    E92000001
#> 238         2026         Week 21 Year to date  Local authority    E92000001
#> 239         2026         Week 21 Year to date  Local authority    E92000001
#> 240         2026         Week 21 Year to date  Local authority    E92000001
#> 241         2026         Week 21 Year to date  Local authority    E92000001
#> 242         2026         Week 21 Year to date  Local authority    E92000001
#> 243         2026         Week 21 Year to date  Local authority    E92000001
#> 244         2026         Week 21 Year to date  Local authority    E92000001
#> 245         2026         Week 21 Year to date  Local authority    E92000001
#> 246         2026         Week 21 Year to date  Local authority    E92000001
#> 247         2026         Week 21 Year to date  Local authority    E92000001
#> 248         2026         Week 21 Year to date  Local authority    E92000001
#> 249         2026         Week 21 Year to date  Local authority    E92000001
#> 250         2026         Week 21 Year to date  Local authority    E92000001
#> 251         2026         Week 21 Year to date  Local authority    E92000001
#> 252         2026         Week 21 Year to date  Local authority    E92000001
#> 253         2026         Week 21 Year to date  Local authority    E92000001
#> 254         2026         Week 21 Year to date  Local authority    E92000001
#> 255         2026         Week 21 Year to date  Local authority    E92000001
#> 256         2026         Week 21 Year to date  Local authority    E92000001
#> 257         2026         Week 21 Year to date  Local authority    E92000001
#> 258         2026         Week 21 Year to date  Local authority    E92000001
#> 259         2026         Week 21 Year to date  Local authority    E92000001
#> 260         2026         Week 21 Year to date  Local authority    E92000001
#> 261         2026         Week 21 Year to date  Local authority    E92000001
#> 262         2026         Week 21 Year to date  Local authority    E92000001
#> 263         2026         Week 21 Year to date  Local authority    E92000001
#> 264         2026         Week 21 Year to date         Regional    E92000001
#> 265         2026         Week 21 Year to date         Regional    E92000001
#> 266         2026         Week 21 Year to date         Regional    E92000001
#> 267         2026         Week 21 Year to date         Regional    E92000001
#> 268         2026         Week 21 Year to date  Local authority    E92000001
#> 269         2026         Week 21 Year to date  Local authority    E92000001
#> 270         2026         Week 21 Year to date  Local authority    E92000001
#> 271         2026         Week 21 Year to date  Local authority    E92000001
#> 272         2026         Week 21 Year to date  Local authority    E92000001
#> 273         2026         Week 21 Year to date  Local authority    E92000001
#> 274         2026         Week 21 Year to date  Local authority    E92000001
#> 275         2026         Week 21 Year to date  Local authority    E92000001
#> 276         2026         Week 21 Year to date  Local authority    E92000001
#> 277         2026         Week 21 Year to date  Local authority    E92000001
#> 278         2026         Week 21 Year to date  Local authority    E92000001
#> 279         2026         Week 21 Year to date  Local authority    E92000001
#> 280         2026         Week 21 Year to date  Local authority    E92000001
#> 281         2026         Week 21 Year to date  Local authority    E92000001
#> 282         2026         Week 21 Year to date  Local authority    E92000001
#> 283         2026         Week 21 Year to date  Local authority    E92000001
#> 284         2026         Week 21 Year to date  Local authority    E92000001
#> 285         2026         Week 21 Year to date  Local authority    E92000001
#> 286         2026         Week 21 Year to date  Local authority    E92000001
#> 287         2026         Week 21 Year to date  Local authority    E92000001
#> 288         2026         Week 21 Year to date  Local authority    E92000001
#> 289         2026         Week 21 Year to date  Local authority    E92000001
#> 290         2026         Week 21 Year to date  Local authority    E92000001
#> 291         2026         Week 21 Year to date  Local authority    E92000001
#> 292         2026         Week 21 Year to date  Local authority    E92000001
#> 293         2026         Week 21 Year to date  Local authority    E92000001
#> 294         2026         Week 21 Year to date  Local authority    E92000001
#> 295         2026         Week 21 Year to date  Local authority    E92000001
#> 296         2026         Week 21 Year to date  Local authority    E92000001
#> 297         2026         Week 21 Year to date  Local authority    E92000001
#> 298         2026         Week 21 Year to date  Local authority    E92000001
#> 299         2026         Week 21 Year to date  Local authority    E92000001
#> 300         2026         Week 21 Year to date  Local authority    E92000001
#> 301         2026         Week 21 Year to date  Local authority    E92000001
#> 302         2026         Week 21 Year to date  Local authority    E92000001
#> 303         2026         Week 21 Year to date  Local authority    E92000001
#> 304         2026         Week 21 Year to date  Local authority    E92000001
#> 305         2026         Week 21 Year to date  Local authority    E92000001
#> 306         2026         Week 21 Year to date  Local authority    E92000001
#> 307         2026         Week 21 Year to date  Local authority    E92000001
#> 308         2026         Week 21 Year to date  Local authority    E92000001
#> 309         2026         Week 21 Year to date  Local authority    E92000001
#> 310         2026         Week 21 Year to date  Local authority    E92000001
#> 311         2026         Week 21 Year to date  Local authority    E92000001
#> 312         2026         Week 21 Year to date  Local authority    E92000001
#> 313         2026         Week 21 Year to date  Local authority    E92000001
#> 314         2026         Week 21 Year to date  Local authority    E92000001
#> 315         2026         Week 21 Year to date  Local authority    E92000001
#> 316         2026         Week 21 Year to date  Local authority    E92000001
#> 317         2026         Week 21 Year to date  Local authority    E92000001
#> 318         2026         Week 21 Year to date  Local authority    E92000001
#> 319         2026         Week 21 Year to date  Local authority    E92000001
#> 320         2026         Week 21 Year to date  Local authority    E92000001
#> 321         2026         Week 21 Year to date  Local authority    E92000001
#> 322         2026         Week 21 Year to date  Local authority    E92000001
#> 323         2026         Week 21 Year to date  Local authority    E92000001
#> 324         2026         Week 21 Year to date         Regional    E92000001
#> 325         2026         Week 21 Year to date         Regional    E92000001
#> 326         2026         Week 21 Year to date         Regional    E92000001
#> 327         2026         Week 21 Year to date         Regional    E92000001
#> 328         2026         Week 21 Year to date  Local authority    E92000001
#> 329         2026         Week 21 Year to date  Local authority    E92000001
#> 330         2026         Week 21 Year to date  Local authority    E92000001
#> 331         2026         Week 21 Year to date  Local authority    E92000001
#> 332         2026         Week 21 Year to date  Local authority    E92000001
#> 333         2026         Week 21 Year to date  Local authority    E92000001
#> 334         2026         Week 21 Year to date  Local authority    E92000001
#> 335         2026         Week 21 Year to date  Local authority    E92000001
#> 336         2026         Week 21 Year to date  Local authority    E92000001
#> 337         2026         Week 21 Year to date  Local authority    E92000001
#> 338         2026         Week 21 Year to date  Local authority    E92000001
#> 339         2026         Week 21 Year to date  Local authority    E92000001
#> 340         2026         Week 21 Year to date  Local authority    E92000001
#> 341         2026         Week 21 Year to date  Local authority    E92000001
#> 342         2026         Week 21 Year to date  Local authority    E92000001
#> 343         2026         Week 21 Year to date  Local authority    E92000001
#> 344         2026         Week 21 Year to date  Local authority    E92000001
#> 345         2026         Week 21 Year to date  Local authority    E92000001
#> 346         2026         Week 21 Year to date  Local authority    E92000001
#> 347         2026         Week 21 Year to date  Local authority    E92000001
#> 348         2026         Week 21 Year to date  Local authority    E92000001
#> 349         2026         Week 21 Year to date  Local authority    E92000001
#> 350         2026         Week 21 Year to date  Local authority    E92000001
#> 351         2026         Week 21 Year to date  Local authority    E92000001
#> 352         2026         Week 21 Year to date  Local authority    E92000001
#> 353         2026         Week 21 Year to date  Local authority    E92000001
#> 354         2026         Week 21 Year to date  Local authority    E92000001
#> 355         2026         Week 21 Year to date  Local authority    E92000001
#> 356         2026         Week 21 Year to date  Local authority    E92000001
#> 357         2026         Week 21 Year to date  Local authority    E92000001
#> 358         2026         Week 21 Year to date  Local authority    E92000001
#> 359         2026         Week 21 Year to date  Local authority    E92000001
#> 360         2026         Week 21 Year to date  Local authority    E92000001
#> 361         2026         Week 21 Year to date  Local authority    E92000001
#> 362         2026         Week 21 Year to date  Local authority    E92000001
#> 363         2026         Week 21 Year to date  Local authority    E92000001
#> 364         2026         Week 21 Year to date  Local authority    E92000001
#> 365         2026         Week 21 Year to date  Local authority    E92000001
#> 366         2026         Week 21 Year to date  Local authority    E92000001
#> 367         2026         Week 21 Year to date  Local authority    E92000001
#> 368         2026         Week 21 Year to date  Local authority    E92000001
#> 369         2026         Week 21 Year to date  Local authority    E92000001
#> 370         2026         Week 21 Year to date  Local authority    E92000001
#> 371         2026         Week 21 Year to date  Local authority    E92000001
#> 372         2026         Week 21 Year to date         Regional    E92000001
#> 373         2026         Week 21 Year to date         Regional    E92000001
#> 374         2026         Week 21 Year to date         Regional    E92000001
#> 375         2026         Week 21 Year to date         Regional    E92000001
#> 376         2026         Week 21 Year to date  Local authority    E92000001
#> 377         2026         Week 21 Year to date  Local authority    E92000001
#> 378         2026         Week 21 Year to date  Local authority    E92000001
#> 379         2026         Week 21 Year to date  Local authority    E92000001
#> 380         2026         Week 21 Year to date  Local authority    E92000001
#> 381         2026         Week 21 Year to date  Local authority    E92000001
#> 382         2026         Week 21 Year to date  Local authority    E92000001
#> 383         2026         Week 21 Year to date  Local authority    E92000001
#> 384         2026         Week 21 Year to date  Local authority    E92000001
#> 385         2026         Week 21 Year to date  Local authority    E92000001
#> 386         2026         Week 21 Year to date  Local authority    E92000001
#> 387         2026         Week 21 Year to date  Local authority    E92000001
#> 388         2026         Week 21 Year to date  Local authority    E92000001
#> 389         2026         Week 21 Year to date  Local authority    E92000001
#> 390         2026         Week 21 Year to date  Local authority    E92000001
#> 391         2026         Week 21 Year to date  Local authority    E92000001
#> 392         2026         Week 21 Year to date  Local authority    E92000001
#> 393         2026         Week 21 Year to date  Local authority    E92000001
#> 394         2026         Week 21 Year to date  Local authority    E92000001
#> 395         2026         Week 21 Year to date  Local authority    E92000001
#> 396         2026         Week 21 Year to date  Local authority    E92000001
#> 397         2026         Week 21 Year to date  Local authority    E92000001
#> 398         2026         Week 21 Year to date  Local authority    E92000001
#> 399         2026         Week 21 Year to date  Local authority    E92000001
#> 400         2026         Week 21 Year to date  Local authority    E92000001
#> 401         2026         Week 21 Year to date  Local authority    E92000001
#> 402         2026         Week 21 Year to date  Local authority    E92000001
#> 403         2026         Week 21 Year to date  Local authority    E92000001
#> 404         2026         Week 21 Year to date  Local authority    E92000001
#> 405         2026         Week 21 Year to date  Local authority    E92000001
#> 406         2026         Week 21 Year to date  Local authority    E92000001
#> 407         2026         Week 21 Year to date  Local authority    E92000001
#> 408         2026         Week 21 Year to date  Local authority    E92000001
#> 409         2026         Week 21 Year to date  Local authority    E92000001
#> 410         2026         Week 21 Year to date  Local authority    E92000001
#> 411         2026         Week 21 Year to date  Local authority    E92000001
#> 412         2026         Week 21 Year to date  Local authority    E92000001
#> 413         2026         Week 21 Year to date  Local authority    E92000001
#> 414         2026         Week 21 Year to date  Local authority    E92000001
#> 415         2026         Week 21 Year to date  Local authority    E92000001
#> 416         2026         Week 21 Year to date  Local authority    E92000001
#> 417         2026         Week 21 Year to date  Local authority    E92000001
#> 418         2026         Week 21 Year to date  Local authority    E92000001
#> 419         2026         Week 21 Year to date  Local authority    E92000001
#> 420         2026         Week 21 Year to date  Local authority    E92000001
#> 421         2026         Week 21 Year to date  Local authority    E92000001
#> 422         2026         Week 21 Year to date  Local authority    E92000001
#> 423         2026         Week 21 Year to date  Local authority    E92000001
#> 424         2026         Week 21 Year to date  Local authority    E92000001
#> 425         2026         Week 21 Year to date  Local authority    E92000001
#> 426         2026         Week 21 Year to date  Local authority    E92000001
#> 427         2026         Week 21 Year to date  Local authority    E92000001
#> 428         2026         Week 21 Year to date  Local authority    E92000001
#> 429         2026         Week 21 Year to date  Local authority    E92000001
#> 430         2026         Week 21 Year to date  Local authority    E92000001
#> 431         2026         Week 21 Year to date  Local authority    E92000001
#> 432         2026         Week 21 Year to date  Local authority    E92000001
#> 433         2026         Week 21 Year to date  Local authority    E92000001
#> 434         2026         Week 21 Year to date  Local authority    E92000001
#> 435         2026         Week 21 Year to date  Local authority    E92000001
#> 436         2026         Week 21 Year to date  Local authority    E92000001
#> 437         2026         Week 21 Year to date  Local authority    E92000001
#> 438         2026         Week 21 Year to date  Local authority    E92000001
#> 439         2026         Week 21 Year to date  Local authority    E92000001
#> 440         2026         Week 21 Year to date  Local authority    E92000001
#> 441         2026         Week 21 Year to date  Local authority    E92000001
#> 442         2026         Week 21 Year to date  Local authority    E92000001
#> 443         2026         Week 21 Year to date  Local authority    E92000001
#> 444         2026         Week 21 Year to date  Local authority    E92000001
#> 445         2026         Week 21 Year to date  Local authority    E92000001
#> 446         2026         Week 21 Year to date  Local authority    E92000001
#> 447         2026         Week 21 Year to date  Local authority    E92000001
#> 448         2026         Week 21 Year to date  Local authority    E92000001
#> 449         2026         Week 21 Year to date  Local authority    E92000001
#> 450         2026         Week 21 Year to date  Local authority    E92000001
#> 451         2026         Week 21 Year to date  Local authority    E92000001
#> 452         2026         Week 21 Year to date  Local authority    E92000001
#> 453         2026         Week 21 Year to date  Local authority    E92000001
#> 454         2026         Week 21 Year to date  Local authority    E92000001
#> 455         2026         Week 21 Year to date  Local authority    E92000001
#> 456         2026         Week 21 Year to date  Local authority    E92000001
#> 457         2026         Week 21 Year to date  Local authority    E92000001
#> 458         2026         Week 21 Year to date  Local authority    E92000001
#> 459         2026         Week 21 Year to date  Local authority    E92000001
#> 460         2026         Week 21 Year to date  Local authority    E92000001
#> 461         2026         Week 21 Year to date  Local authority    E92000001
#> 462         2026         Week 21 Year to date  Local authority    E92000001
#> 463         2026         Week 21 Year to date  Local authority    E92000001
#> 464         2026         Week 21 Year to date  Local authority    E92000001
#> 465         2026         Week 21 Year to date  Local authority    E92000001
#> 466         2026         Week 21 Year to date  Local authority    E92000001
#> 467         2026         Week 21 Year to date  Local authority    E92000001
#> 468         2026         Week 21 Year to date  Local authority    E92000001
#> 469         2026         Week 21 Year to date  Local authority    E92000001
#> 470         2026         Week 21 Year to date  Local authority    E92000001
#> 471         2026         Week 21 Year to date  Local authority    E92000001
#> 472         2026         Week 21 Year to date  Local authority    E92000001
#> 473         2026         Week 21 Year to date  Local authority    E92000001
#> 474         2026         Week 21 Year to date  Local authority    E92000001
#> 475         2026         Week 21 Year to date  Local authority    E92000001
#> 476         2026         Week 21 Year to date  Local authority    E92000001
#> 477         2026         Week 21 Year to date  Local authority    E92000001
#> 478         2026         Week 21 Year to date  Local authority    E92000001
#> 479         2026         Week 21 Year to date  Local authority    E92000001
#> 480         2026         Week 21 Year to date  Local authority    E92000001
#> 481         2026         Week 21 Year to date  Local authority    E92000001
#> 482         2026         Week 21 Year to date  Local authority    E92000001
#> 483         2026         Week 21 Year to date  Local authority    E92000001
#> 484         2026         Week 21 Year to date  Local authority    E92000001
#> 485         2026         Week 21 Year to date  Local authority    E92000001
#> 486         2026         Week 21 Year to date  Local authority    E92000001
#> 487         2026         Week 21 Year to date  Local authority    E92000001
#> 488         2026         Week 21 Year to date  Local authority    E92000001
#> 489         2026         Week 21 Year to date  Local authority    E92000001
#> 490         2026         Week 21 Year to date  Local authority    E92000001
#> 491         2026         Week 21 Year to date  Local authority    E92000001
#> 492         2026         Week 21 Year to date  Local authority    E92000001
#> 493         2026         Week 21 Year to date  Local authority    E92000001
#> 494         2026         Week 21 Year to date  Local authority    E92000001
#> 495         2026         Week 21 Year to date  Local authority    E92000001
#> 496         2026         Week 21 Year to date  Local authority    E92000001
#> 497         2026         Week 21 Year to date  Local authority    E92000001
#> 498         2026         Week 21 Year to date  Local authority    E92000001
#> 499         2026         Week 21 Year to date  Local authority    E92000001
#> 500         2026         Week 21 Year to date  Local authority    E92000001
#> 501         2026         Week 21 Year to date  Local authority    E92000001
#> 502         2026         Week 21 Year to date  Local authority    E92000001
#> 503         2026         Week 21 Year to date  Local authority    E92000001
#> 504         2026         Week 21 Year to date  Local authority    E92000001
#> 505         2026         Week 21 Year to date  Local authority    E92000001
#> 506         2026         Week 21 Year to date         Regional    E92000001
#> 507         2026         Week 21 Year to date         Regional    E92000001
#> 508         2026         Week 21 Year to date         Regional    E92000001
#> 509         2026         Week 21 Year to date         Regional    E92000001
#> 510         2026         Week 21 Year to date  Local authority    E92000001
#> 511         2026         Week 21 Year to date  Local authority    E92000001
#> 512         2026         Week 21 Year to date  Local authority    E92000001
#> 513         2026         Week 21 Year to date  Local authority    E92000001
#> 514         2026         Week 21 Year to date  Local authority    E92000001
#> 515         2026         Week 21 Year to date  Local authority    E92000001
#> 516         2026         Week 21 Year to date  Local authority    E92000001
#> 517         2026         Week 21 Year to date  Local authority    E92000001
#> 518         2026         Week 21 Year to date  Local authority    E92000001
#> 519         2026         Week 21 Year to date  Local authority    E92000001
#> 520         2026         Week 21 Year to date  Local authority    E92000001
#> 521         2026         Week 21 Year to date  Local authority    E92000001
#> 522         2026         Week 21 Year to date  Local authority    E92000001
#> 523         2026         Week 21 Year to date  Local authority    E92000001
#> 524         2026         Week 21 Year to date  Local authority    E92000001
#> 525         2026         Week 21 Year to date  Local authority    E92000001
#> 526         2026         Week 21 Year to date  Local authority    E92000001
#> 527         2026         Week 21 Year to date  Local authority    E92000001
#> 528         2026         Week 21 Year to date  Local authority    E92000001
#> 529         2026         Week 21 Year to date  Local authority    E92000001
#> 530         2026         Week 21 Year to date  Local authority    E92000001
#> 531         2026         Week 21 Year to date  Local authority    E92000001
#> 532         2026         Week 21 Year to date  Local authority    E92000001
#> 533         2026         Week 21 Year to date  Local authority    E92000001
#> 534         2026         Week 21 Year to date  Local authority    E92000001
#> 535         2026         Week 21 Year to date  Local authority    E92000001
#> 536         2026         Week 21 Year to date  Local authority    E92000001
#> 537         2026         Week 21 Year to date  Local authority    E92000001
#> 538         2026         Week 21 Year to date  Local authority    E92000001
#> 539         2026         Week 21 Year to date  Local authority    E92000001
#> 540         2026         Week 21 Year to date  Local authority    E92000001
#> 541         2026         Week 21 Year to date  Local authority    E92000001
#> 542         2026         Week 21 Year to date  Local authority    E92000001
#> 543         2026         Week 21 Year to date  Local authority    E92000001
#> 544         2026         Week 21 Year to date  Local authority    E92000001
#> 545         2026         Week 21 Year to date  Local authority    E92000001
#> 546         2026         Week 21 Year to date  Local authority    E92000001
#> 547         2026         Week 21 Year to date  Local authority    E92000001
#> 548         2026         Week 21 Year to date  Local authority    E92000001
#> 549         2026         Week 21 Year to date  Local authority    E92000001
#> 550         2026         Week 21 Year to date  Local authority    E92000001
#> 551         2026         Week 21 Year to date  Local authority    E92000001
#> 552         2026         Week 21 Year to date  Local authority    E92000001
#> 553         2026         Week 21 Year to date  Local authority    E92000001
#> 554         2026         Week 21 Year to date  Local authority    E92000001
#> 555         2026         Week 21 Year to date  Local authority    E92000001
#> 556         2026         Week 21 Year to date  Local authority    E92000001
#> 557         2026         Week 21 Year to date  Local authority    E92000001
#> 558         2026         Week 21 Year to date  Local authority    E92000001
#> 559         2026         Week 21 Year to date  Local authority    E92000001
#> 560         2026         Week 21 Year to date  Local authority    E92000001
#> 561         2026         Week 21 Year to date  Local authority    E92000001
#> 562         2026         Week 21 Year to date  Local authority    E92000001
#> 563         2026         Week 21 Year to date  Local authority    E92000001
#> 564         2026         Week 21 Year to date  Local authority    E92000001
#> 565         2026         Week 21 Year to date  Local authority    E92000001
#> 566         2026         Week 21 Year to date  Local authority    E92000001
#> 567         2026         Week 21 Year to date  Local authority    E92000001
#> 568         2026         Week 21 Year to date  Local authority    E92000001
#> 569         2026         Week 21 Year to date  Local authority    E92000001
#> 570         2026         Week 21 Year to date  Local authority    E92000001
#> 571         2026         Week 21 Year to date  Local authority    E92000001
#> 572         2026         Week 21 Year to date  Local authority    E92000001
#> 573         2026         Week 21 Year to date  Local authority    E92000001
#> 574         2026         Week 21 Year to date  Local authority    E92000001
#> 575         2026         Week 21 Year to date  Local authority    E92000001
#> 576         2026         Week 21 Year to date  Local authority    E92000001
#> 577         2026         Week 21 Year to date  Local authority    E92000001
#> 578         2026         Week 21 Year to date  Local authority    E92000001
#> 579         2026         Week 21 Year to date  Local authority    E92000001
#> 580         2026         Week 21 Year to date  Local authority    E92000001
#> 581         2026         Week 21 Year to date  Local authority    E92000001
#> 582         2026         Week 21 Year to date  Local authority    E92000001
#> 583         2026         Week 21 Year to date  Local authority    E92000001
#> 584         2026         Week 21 Year to date  Local authority    E92000001
#> 585         2026         Week 21 Year to date  Local authority    E92000001
#> 586         2026         Week 21 Year to date         Regional    E92000001
#> 587         2026         Week 21 Year to date         Regional    E92000001
#> 588         2026         Week 21 Year to date         Regional    E92000001
#> 589         2026         Week 21 Year to date         Regional    E92000001
#> 590         2026         Week 21 Year to date  Local authority    E92000001
#> 591         2026         Week 21 Year to date  Local authority    E92000001
#> 592         2026         Week 21 Year to date  Local authority    E92000001
#> 593         2026         Week 21 Year to date  Local authority    E92000001
#> 594         2026         Week 21 Year to date  Local authority    E92000001
#> 595         2026         Week 21 Year to date  Local authority    E92000001
#> 596         2026         Week 21 Year to date  Local authority    E92000001
#> 597         2026         Week 21 Year to date  Local authority    E92000001
#> 598         2026         Week 21 Year to date  Local authority    E92000001
#> 599         2026         Week 21 Year to date  Local authority    E92000001
#> 600         2026         Week 21 Year to date  Local authority    E92000001
#> 601         2026         Week 21 Year to date  Local authority    E92000001
#> 602         2026         Week 21 Year to date  Local authority    E92000001
#> 603         2026         Week 21 Year to date  Local authority    E92000001
#> 604         2026         Week 21 Year to date  Local authority    E92000001
#> 605         2026         Week 21 Year to date  Local authority    E92000001
#> 606         2026         Week 21 Year to date  Local authority    E92000001
#> 607         2026         Week 21 Year to date  Local authority    E92000001
#> 608         2026         Week 21 Year to date  Local authority    E92000001
#> 609         2026         Week 21 Year to date  Local authority    E92000001
#> 610         2026         Week 21 Year to date  Local authority    E92000001
#> 611         2026         Week 21 Year to date  Local authority    E92000001
#> 612         2026         Week 21 Year to date  Local authority    E92000001
#> 613         2026         Week 21 Year to date  Local authority    E92000001
#> 614         2026         Week 21 Year to date  Local authority    E92000001
#> 615         2026         Week 21 Year to date  Local authority    E92000001
#> 616         2026         Week 21 Year to date  Local authority    E92000001
#> 617         2026         Week 21 Year to date  Local authority    E92000001
#> 618         2026         Week 21 Year to date  Local authority    E92000001
#> 619         2026         Week 21 Year to date  Local authority    E92000001
#> 620         2026         Week 21 Year to date  Local authority    E92000001
#> 621         2026         Week 21 Year to date  Local authority    E92000001
#> 622         2026         Week 21 Year to date  Local authority    E92000001
#> 623         2026         Week 21 Year to date  Local authority    E92000001
#> 624         2026         Week 21 Year to date  Local authority    E92000001
#> 625         2026         Week 21 Year to date  Local authority    E92000001
#> 626         2026         Week 21 Year to date  Local authority    E92000001
#> 627         2026         Week 21 Year to date  Local authority    E92000001
#> 628         2026         Week 21 Year to date  Local authority    E92000001
#> 629         2026         Week 21 Year to date  Local authority    E92000001
#> 630         2026         Week 21 Year to date  Local authority    E92000001
#> 631         2026         Week 21 Year to date  Local authority    E92000001
#> 632         2026         Week 21 Year to date  Local authority    E92000001
#> 633         2026         Week 21 Year to date  Local authority    E92000001
#> 634         2026         Week 21 Year to date  Local authority    E92000001
#> 635         2026         Week 21 Year to date  Local authority    E92000001
#> 636         2026         Week 21 Year to date  Local authority    E92000001
#> 637         2026         Week 21 Year to date  Local authority    E92000001
#> 638         2026         Week 21 Year to date  Local authority    E92000001
#> 639         2026         Week 21 Year to date  Local authority    E92000001
#> 640         2026         Week 21 Year to date  Local authority    E92000001
#> 641         2026         Week 21 Year to date  Local authority    E92000001
#> 642         2026         Week 21 Year to date  Local authority    E92000001
#> 643         2026         Week 21 Year to date  Local authority    E92000001
#> 644         2026         Week 21 Year to date  Local authority    E92000001
#> 645         2026         Week 21 Year to date  Local authority    E92000001
#> 646         2026         Week 21 Year to date  Local authority    E92000001
#> 647         2026         Week 21 Year to date  Local authority    E92000001
#> 648         2026         Week 20 Year to date         National    E92000001
#> 649         2026         Week 20 Year to date         National    E92000001
#> 650         2026         Week 20 Year to date         National    E92000001
#> 651         2026         Week 20 Year to date         National    E92000001
#> 652         2026         Week 20 Year to date         Regional    E92000001
#> 653         2026         Week 20 Year to date         Regional    E92000001
#> 654         2026         Week 20 Year to date         Regional    E92000001
#> 655         2026         Week 20 Year to date         Regional    E92000001
#> 656         2026         Week 20 Year to date  Local authority    E92000001
#> 657         2026         Week 20 Year to date  Local authority    E92000001
#> 658         2026         Week 20 Year to date  Local authority    E92000001
#> 659         2026         Week 20 Year to date  Local authority    E92000001
#> 660         2026         Week 20 Year to date  Local authority    E92000001
#> 661         2026         Week 20 Year to date  Local authority    E92000001
#> 662         2026         Week 20 Year to date  Local authority    E92000001
#> 663         2026         Week 20 Year to date  Local authority    E92000001
#> 664         2026         Week 20 Year to date  Local authority    E92000001
#> 665         2026         Week 20 Year to date  Local authority    E92000001
#> 666         2026         Week 20 Year to date  Local authority    E92000001
#> 667         2026         Week 20 Year to date  Local authority    E92000001
#> 668         2026         Week 20 Year to date  Local authority    E92000001
#> 669         2026         Week 20 Year to date  Local authority    E92000001
#> 670         2026         Week 20 Year to date  Local authority    E92000001
#> 671         2026         Week 20 Year to date  Local authority    E92000001
#> 672         2026         Week 20 Year to date  Local authority    E92000001
#> 673         2026         Week 20 Year to date  Local authority    E92000001
#> 674         2026         Week 20 Year to date  Local authority    E92000001
#> 675         2026         Week 20 Year to date  Local authority    E92000001
#> 676         2026         Week 20 Year to date  Local authority    E92000001
#> 677         2026         Week 20 Year to date  Local authority    E92000001
#> 678         2026         Week 20 Year to date  Local authority    E92000001
#> 679         2026         Week 20 Year to date  Local authority    E92000001
#> 680         2026         Week 20 Year to date  Local authority    E92000001
#> 681         2026         Week 20 Year to date  Local authority    E92000001
#> 682         2026         Week 20 Year to date  Local authority    E92000001
#> 683         2026         Week 20 Year to date  Local authority    E92000001
#> 684         2026         Week 20 Year to date  Local authority    E92000001
#> 685         2026         Week 20 Year to date  Local authority    E92000001
#> 686         2026         Week 20 Year to date  Local authority    E92000001
#> 687         2026         Week 20 Year to date  Local authority    E92000001
#> 688         2026         Week 20 Year to date  Local authority    E92000001
#> 689         2026         Week 20 Year to date  Local authority    E92000001
#> 690         2026         Week 20 Year to date  Local authority    E92000001
#> 691         2026         Week 20 Year to date  Local authority    E92000001
#> 692         2026         Week 20 Year to date  Local authority    E92000001
#> 693         2026         Week 20 Year to date  Local authority    E92000001
#> 694         2026         Week 20 Year to date  Local authority    E92000001
#> 695         2026         Week 20 Year to date  Local authority    E92000001
#> 696         2026         Week 20 Year to date  Local authority    E92000001
#> 697         2026         Week 20 Year to date  Local authority    E92000001
#> 698         2026         Week 20 Year to date  Local authority    E92000001
#> 699         2026         Week 20 Year to date  Local authority    E92000001
#> 700         2026         Week 20 Year to date  Local authority    E92000001
#> 701         2026         Week 20 Year to date  Local authority    E92000001
#> 702         2026         Week 20 Year to date  Local authority    E92000001
#> 703         2026         Week 20 Year to date  Local authority    E92000001
#> 704         2026         Week 20 Year to date         Regional    E92000001
#> 705         2026         Week 20 Year to date         Regional    E92000001
#> 706         2026         Week 20 Year to date         Regional    E92000001
#> 707         2026         Week 20 Year to date         Regional    E92000001
#> 708         2026         Week 20 Year to date  Local authority    E92000001
#> 709         2026         Week 20 Year to date  Local authority    E92000001
#> 710         2026         Week 20 Year to date  Local authority    E92000001
#> 711         2026         Week 20 Year to date  Local authority    E92000001
#> 712         2026         Week 20 Year to date  Local authority    E92000001
#> 713         2026         Week 20 Year to date  Local authority    E92000001
#> 714         2026         Week 20 Year to date  Local authority    E92000001
#> 715         2026         Week 20 Year to date  Local authority    E92000001
#> 716         2026         Week 20 Year to date  Local authority    E92000001
#> 717         2026         Week 20 Year to date  Local authority    E92000001
#> 718         2026         Week 20 Year to date  Local authority    E92000001
#> 719         2026         Week 20 Year to date  Local authority    E92000001
#> 720         2026         Week 20 Year to date  Local authority    E92000001
#> 721         2026         Week 20 Year to date  Local authority    E92000001
#> 722         2026         Week 20 Year to date  Local authority    E92000001
#> 723         2026         Week 20 Year to date  Local authority    E92000001
#> 724         2026         Week 20 Year to date  Local authority    E92000001
#> 725         2026         Week 20 Year to date  Local authority    E92000001
#> 726         2026         Week 20 Year to date  Local authority    E92000001
#> 727         2026         Week 20 Year to date  Local authority    E92000001
#> 728         2026         Week 20 Year to date  Local authority    E92000001
#> 729         2026         Week 20 Year to date  Local authority    E92000001
#> 730         2026         Week 20 Year to date  Local authority    E92000001
#> 731         2026         Week 20 Year to date  Local authority    E92000001
#> 732         2026         Week 20 Year to date  Local authority    E92000001
#> 733         2026         Week 20 Year to date  Local authority    E92000001
#> 734         2026         Week 20 Year to date  Local authority    E92000001
#> 735         2026         Week 20 Year to date  Local authority    E92000001
#> 736         2026         Week 20 Year to date  Local authority    E92000001
#> 737         2026         Week 20 Year to date  Local authority    E92000001
#> 738         2026         Week 20 Year to date  Local authority    E92000001
#> 739         2026         Week 20 Year to date  Local authority    E92000001
#> 740         2026         Week 20 Year to date  Local authority    E92000001
#> 741         2026         Week 20 Year to date  Local authority    E92000001
#> 742         2026         Week 20 Year to date  Local authority    E92000001
#> 743         2026         Week 20 Year to date  Local authority    E92000001
#> 744         2026         Week 20 Year to date  Local authority    E92000001
#> 745         2026         Week 20 Year to date  Local authority    E92000001
#> 746         2026         Week 20 Year to date  Local authority    E92000001
#> 747         2026         Week 20 Year to date  Local authority    E92000001
#> 748         2026         Week 20 Year to date  Local authority    E92000001
#> 749         2026         Week 20 Year to date  Local authority    E92000001
#> 750         2026         Week 20 Year to date  Local authority    E92000001
#> 751         2026         Week 20 Year to date  Local authority    E92000001
#> 752         2026         Week 20 Year to date  Local authority    E92000001
#> 753         2026         Week 20 Year to date  Local authority    E92000001
#> 754         2026         Week 20 Year to date  Local authority    E92000001
#> 755         2026         Week 20 Year to date  Local authority    E92000001
#> 756         2026         Week 20 Year to date  Local authority    E92000001
#> 757         2026         Week 20 Year to date  Local authority    E92000001
#> 758         2026         Week 20 Year to date  Local authority    E92000001
#> 759         2026         Week 20 Year to date  Local authority    E92000001
#> 760         2026         Week 20 Year to date  Local authority    E92000001
#> 761         2026         Week 20 Year to date  Local authority    E92000001
#> 762         2026         Week 20 Year to date  Local authority    E92000001
#> 763         2026         Week 20 Year to date  Local authority    E92000001
#> 764         2026         Week 20 Year to date  Local authority    E92000001
#> 765         2026         Week 20 Year to date  Local authority    E92000001
#> 766         2026         Week 20 Year to date  Local authority    E92000001
#> 767         2026         Week 20 Year to date  Local authority    E92000001
#> 768         2026         Week 20 Year to date  Local authority    E92000001
#> 769         2026         Week 20 Year to date  Local authority    E92000001
#> 770         2026         Week 20 Year to date  Local authority    E92000001
#> 771         2026         Week 20 Year to date  Local authority    E92000001
#> 772         2026         Week 20 Year to date  Local authority    E92000001
#> 773         2026         Week 20 Year to date  Local authority    E92000001
#> 774         2026         Week 20 Year to date  Local authority    E92000001
#> 775         2026         Week 20 Year to date  Local authority    E92000001
#> 776         2026         Week 20 Year to date  Local authority    E92000001
#> 777         2026         Week 20 Year to date  Local authority    E92000001
#> 778         2026         Week 20 Year to date  Local authority    E92000001
#> 779         2026         Week 20 Year to date  Local authority    E92000001
#> 780         2026         Week 20 Year to date  Local authority    E92000001
#> 781         2026         Week 20 Year to date  Local authority    E92000001
#> 782         2026         Week 20 Year to date  Local authority    E92000001
#> 783         2026         Week 20 Year to date  Local authority    E92000001
#> 784         2026         Week 20 Year to date  Local authority    E92000001
#> 785         2026         Week 20 Year to date  Local authority    E92000001
#> 786         2026         Week 20 Year to date  Local authority    E92000001
#> 787         2026         Week 20 Year to date  Local authority    E92000001
#> 788         2026         Week 20 Year to date  Local authority    E92000001
#> 789         2026         Week 20 Year to date  Local authority    E92000001
#> 790         2026         Week 20 Year to date  Local authority    E92000001
#> 791         2026         Week 20 Year to date  Local authority    E92000001
#> 792         2026         Week 20 Year to date  Local authority    E92000001
#> 793         2026         Week 20 Year to date  Local authority    E92000001
#> 794         2026         Week 20 Year to date  Local authority    E92000001
#> 795         2026         Week 20 Year to date  Local authority    E92000001
#> 796         2026         Week 20 Year to date  Local authority    E92000001
#> 797         2026         Week 20 Year to date  Local authority    E92000001
#> 798         2026         Week 20 Year to date  Local authority    E92000001
#> 799         2026         Week 20 Year to date  Local authority    E92000001
#> 800         2026         Week 20 Year to date  Local authority    E92000001
#> 801         2026         Week 20 Year to date  Local authority    E92000001
#> 802         2026         Week 20 Year to date  Local authority    E92000001
#> 803         2026         Week 20 Year to date  Local authority    E92000001
#> 804         2026         Week 20 Year to date         Regional    E92000001
#> 805         2026         Week 20 Year to date         Regional    E92000001
#> 806         2026         Week 20 Year to date         Regional    E92000001
#> 807         2026         Week 20 Year to date         Regional    E92000001
#> 808         2026         Week 20 Year to date  Local authority    E92000001
#> 809         2026         Week 20 Year to date  Local authority    E92000001
#> 810         2026         Week 20 Year to date  Local authority    E92000001
#> 811         2026         Week 20 Year to date  Local authority    E92000001
#> 812         2026         Week 20 Year to date  Local authority    E92000001
#> 813         2026         Week 20 Year to date  Local authority    E92000001
#> 814         2026         Week 20 Year to date  Local authority    E92000001
#> 815         2026         Week 20 Year to date  Local authority    E92000001
#> 816         2026         Week 20 Year to date  Local authority    E92000001
#> 817         2026         Week 20 Year to date  Local authority    E92000001
#> 818         2026         Week 20 Year to date  Local authority    E92000001
#> 819         2026         Week 20 Year to date  Local authority    E92000001
#> 820         2026         Week 20 Year to date  Local authority    E92000001
#> 821         2026         Week 20 Year to date  Local authority    E92000001
#> 822         2026         Week 20 Year to date  Local authority    E92000001
#> 823         2026         Week 20 Year to date  Local authority    E92000001
#> 824         2026         Week 20 Year to date  Local authority    E92000001
#> 825         2026         Week 20 Year to date  Local authority    E92000001
#> 826         2026         Week 20 Year to date  Local authority    E92000001
#> 827         2026         Week 20 Year to date  Local authority    E92000001
#> 828         2026         Week 20 Year to date  Local authority    E92000001
#> 829         2026         Week 20 Year to date  Local authority    E92000001
#> 830         2026         Week 20 Year to date  Local authority    E92000001
#> 831         2026         Week 20 Year to date  Local authority    E92000001
#> 832         2026         Week 20 Year to date  Local authority    E92000001
#> 833         2026         Week 20 Year to date  Local authority    E92000001
#> 834         2026         Week 20 Year to date  Local authority    E92000001
#> 835         2026         Week 20 Year to date  Local authority    E92000001
#> 836         2026         Week 20 Year to date  Local authority    E92000001
#> 837         2026         Week 20 Year to date  Local authority    E92000001
#> 838         2026         Week 20 Year to date  Local authority    E92000001
#> 839         2026         Week 20 Year to date  Local authority    E92000001
#> 840         2026         Week 20 Year to date  Local authority    E92000001
#> 841         2026         Week 20 Year to date  Local authority    E92000001
#> 842         2026         Week 20 Year to date  Local authority    E92000001
#> 843         2026         Week 20 Year to date  Local authority    E92000001
#> 844         2026         Week 20 Year to date  Local authority    E92000001
#> 845         2026         Week 20 Year to date  Local authority    E92000001
#> 846         2026         Week 20 Year to date  Local authority    E92000001
#> 847         2026         Week 20 Year to date  Local authority    E92000001
#> 848         2026         Week 20 Year to date  Local authority    E92000001
#> 849         2026         Week 20 Year to date  Local authority    E92000001
#> 850         2026         Week 20 Year to date  Local authority    E92000001
#> 851         2026         Week 20 Year to date  Local authority    E92000001
#> 852         2026         Week 20 Year to date  Local authority    E92000001
#> 853         2026         Week 20 Year to date  Local authority    E92000001
#> 854         2026         Week 20 Year to date  Local authority    E92000001
#> 855         2026         Week 20 Year to date  Local authority    E92000001
#> 856         2026         Week 20 Year to date  Local authority    E92000001
#> 857         2026         Week 20 Year to date  Local authority    E92000001
#> 858         2026         Week 20 Year to date  Local authority    E92000001
#> 859         2026         Week 20 Year to date  Local authority    E92000001
#> 860         2026         Week 20 Year to date  Local authority    E92000001
#> 861         2026         Week 20 Year to date  Local authority    E92000001
#> 862         2026         Week 20 Year to date  Local authority    E92000001
#> 863         2026         Week 20 Year to date  Local authority    E92000001
#> 864         2026         Week 20 Year to date  Local authority    E92000001
#> 865         2026         Week 20 Year to date  Local authority    E92000001
#> 866         2026         Week 20 Year to date  Local authority    E92000001
#> 867         2026         Week 20 Year to date  Local authority    E92000001
#> 868         2026         Week 20 Year to date         Regional    E92000001
#> 869         2026         Week 20 Year to date         Regional    E92000001
#> 870         2026         Week 20 Year to date         Regional    E92000001
#> 871         2026         Week 20 Year to date         Regional    E92000001
#> 872         2026         Week 20 Year to date  Local authority    E92000001
#> 873         2026         Week 20 Year to date  Local authority    E92000001
#> 874         2026         Week 20 Year to date  Local authority    E92000001
#> 875         2026         Week 20 Year to date  Local authority    E92000001
#> 876         2026         Week 20 Year to date  Local authority    E92000001
#> 877         2026         Week 20 Year to date  Local authority    E92000001
#> 878         2026         Week 20 Year to date  Local authority    E92000001
#> 879         2026         Week 20 Year to date  Local authority    E92000001
#> 880         2026         Week 20 Year to date  Local authority    E92000001
#> 881         2026         Week 20 Year to date  Local authority    E92000001
#> 882         2026         Week 20 Year to date  Local authority    E92000001
#> 883         2026         Week 20 Year to date  Local authority    E92000001
#> 884         2026         Week 20 Year to date  Local authority    E92000001
#> 885         2026         Week 20 Year to date  Local authority    E92000001
#> 886         2026         Week 20 Year to date  Local authority    E92000001
#> 887         2026         Week 20 Year to date  Local authority    E92000001
#> 888         2026         Week 20 Year to date  Local authority    E92000001
#> 889         2026         Week 20 Year to date  Local authority    E92000001
#> 890         2026         Week 20 Year to date  Local authority    E92000001
#> 891         2026         Week 20 Year to date  Local authority    E92000001
#> 892         2026         Week 20 Year to date  Local authority    E92000001
#> 893         2026         Week 20 Year to date  Local authority    E92000001
#> 894         2026         Week 20 Year to date  Local authority    E92000001
#> 895         2026         Week 20 Year to date  Local authority    E92000001
#> 896         2026         Week 20 Year to date  Local authority    E92000001
#> 897         2026         Week 20 Year to date  Local authority    E92000001
#> 898         2026         Week 20 Year to date  Local authority    E92000001
#> 899         2026         Week 20 Year to date  Local authority    E92000001
#> 900         2026         Week 20 Year to date  Local authority    E92000001
#> 901         2026         Week 20 Year to date  Local authority    E92000001
#> 902         2026         Week 20 Year to date  Local authority    E92000001
#> 903         2026         Week 20 Year to date  Local authority    E92000001
#> 904         2026         Week 20 Year to date  Local authority    E92000001
#> 905         2026         Week 20 Year to date  Local authority    E92000001
#> 906         2026         Week 20 Year to date  Local authority    E92000001
#> 907         2026         Week 20 Year to date  Local authority    E92000001
#> 908         2026         Week 20 Year to date  Local authority    E92000001
#> 909         2026         Week 20 Year to date  Local authority    E92000001
#> 910         2026         Week 20 Year to date  Local authority    E92000001
#> 911         2026         Week 20 Year to date         Regional    E92000001
#> 912         2026         Week 20 Year to date         Regional    E92000001
#> 913         2026         Week 20 Year to date         Regional    E92000001
#> 914         2026         Week 20 Year to date         Regional    E92000001
#> 915         2026         Week 20 Year to date  Local authority    E92000001
#> 916         2026         Week 20 Year to date  Local authority    E92000001
#> 917         2026         Week 20 Year to date  Local authority    E92000001
#> 918         2026         Week 20 Year to date  Local authority    E92000001
#> 919         2026         Week 20 Year to date  Local authority    E92000001
#> 920         2026         Week 20 Year to date  Local authority    E92000001
#> 921         2026         Week 20 Year to date  Local authority    E92000001
#> 922         2026         Week 20 Year to date  Local authority    E92000001
#> 923         2026         Week 20 Year to date  Local authority    E92000001
#> 924         2026         Week 20 Year to date  Local authority    E92000001
#> 925         2026         Week 20 Year to date  Local authority    E92000001
#> 926         2026         Week 20 Year to date  Local authority    E92000001
#> 927         2026         Week 20 Year to date  Local authority    E92000001
#> 928         2026         Week 20 Year to date  Local authority    E92000001
#> 929         2026         Week 20 Year to date  Local authority    E92000001
#> 930         2026         Week 20 Year to date  Local authority    E92000001
#> 931         2026         Week 20 Year to date  Local authority    E92000001
#> 932         2026         Week 20 Year to date  Local authority    E92000001
#> 933         2026         Week 20 Year to date  Local authority    E92000001
#> 934         2026         Week 20 Year to date  Local authority    E92000001
#> 935         2026         Week 20 Year to date  Local authority    E92000001
#> 936         2026         Week 20 Year to date  Local authority    E92000001
#> 937         2026         Week 20 Year to date  Local authority    E92000001
#> 938         2026         Week 20 Year to date  Local authority    E92000001
#> 939         2026         Week 20 Year to date  Local authority    E92000001
#> 940         2026         Week 20 Year to date  Local authority    E92000001
#> 941         2026         Week 20 Year to date  Local authority    E92000001
#> 942         2026         Week 20 Year to date  Local authority    E92000001
#> 943         2026         Week 20 Year to date  Local authority    E92000001
#> 944         2026         Week 20 Year to date  Local authority    E92000001
#> 945         2026         Week 20 Year to date  Local authority    E92000001
#> 946         2026         Week 20 Year to date  Local authority    E92000001
#> 947         2026         Week 20 Year to date  Local authority    E92000001
#> 948         2026         Week 20 Year to date  Local authority    E92000001
#> 949         2026         Week 20 Year to date  Local authority    E92000001
#> 950         2026         Week 20 Year to date  Local authority    E92000001
#> 951         2026         Week 20 Year to date  Local authority    E92000001
#> 952         2026         Week 20 Year to date  Local authority    E92000001
#> 953         2026         Week 20 Year to date  Local authority    E92000001
#> 954         2026         Week 20 Year to date  Local authority    E92000001
#> 955         2026         Week 20 Year to date  Local authority    E92000001
#> 956         2026         Week 20 Year to date  Local authority    E92000001
#> 957         2026         Week 20 Year to date  Local authority    E92000001
#> 958         2026         Week 20 Year to date  Local authority    E92000001
#> 959         2026         Week 20 Year to date  Local authority    E92000001
#> 960         2026         Week 20 Year to date  Local authority    E92000001
#> 961         2026         Week 20 Year to date  Local authority    E92000001
#> 962         2026         Week 20 Year to date  Local authority    E92000001
#> 963         2026         Week 20 Year to date  Local authority    E92000001
#> 964         2026         Week 20 Year to date  Local authority    E92000001
#> 965         2026         Week 20 Year to date  Local authority    E92000001
#> 966         2026         Week 20 Year to date  Local authority    E92000001
#> 967         2026         Week 20 Year to date  Local authority    E92000001
#> 968         2026         Week 20 Year to date  Local authority    E92000001
#> 969         2026         Week 20 Year to date  Local authority    E92000001
#> 970         2026         Week 20 Year to date  Local authority    E92000001
#> 971         2026         Week 20 Year to date         Regional    E92000001
#> 972         2026         Week 20 Year to date         Regional    E92000001
#> 973         2026         Week 20 Year to date         Regional    E92000001
#> 974         2026         Week 20 Year to date         Regional    E92000001
#> 975         2026         Week 20 Year to date  Local authority    E92000001
#> 976         2026         Week 20 Year to date  Local authority    E92000001
#> 977         2026         Week 20 Year to date  Local authority    E92000001
#> 978         2026         Week 20 Year to date  Local authority    E92000001
#> 979         2026         Week 20 Year to date  Local authority    E92000001
#> 980         2026         Week 20 Year to date  Local authority    E92000001
#> 981         2026         Week 20 Year to date  Local authority    E92000001
#> 982         2026         Week 20 Year to date  Local authority    E92000001
#> 983         2026         Week 20 Year to date  Local authority    E92000001
#> 984         2026         Week 20 Year to date  Local authority    E92000001
#> 985         2026         Week 20 Year to date  Local authority    E92000001
#> 986         2026         Week 20 Year to date  Local authority    E92000001
#> 987         2026         Week 20 Year to date  Local authority    E92000001
#> 988         2026         Week 20 Year to date  Local authority    E92000001
#> 989         2026         Week 20 Year to date  Local authority    E92000001
#> 990         2026         Week 20 Year to date  Local authority    E92000001
#> 991         2026         Week 20 Year to date  Local authority    E92000001
#> 992         2026         Week 20 Year to date  Local authority    E92000001
#> 993         2026         Week 20 Year to date  Local authority    E92000001
#> 994         2026         Week 20 Year to date  Local authority    E92000001
#> 995         2026         Week 20 Year to date  Local authority    E92000001
#> 996         2026         Week 20 Year to date  Local authority    E92000001
#> 997         2026         Week 20 Year to date  Local authority    E92000001
#> 998         2026         Week 20 Year to date  Local authority    E92000001
#> 999         2026         Week 20 Year to date  Local authority    E92000001
#> 1000        2026         Week 20 Year to date  Local authority    E92000001
#> 1001        2026         Week 20 Year to date  Local authority    E92000001
#> 1002        2026         Week 20 Year to date  Local authority    E92000001
#> 1003        2026         Week 20 Year to date  Local authority    E92000001
#> 1004        2026         Week 20 Year to date  Local authority    E92000001
#> 1005        2026         Week 20 Year to date  Local authority    E92000001
#> 1006        2026         Week 20 Year to date  Local authority    E92000001
#> 1007        2026         Week 20 Year to date  Local authority    E92000001
#> 1008        2026         Week 20 Year to date  Local authority    E92000001
#> 1009        2026         Week 20 Year to date  Local authority    E92000001
#> 1010        2026         Week 20 Year to date  Local authority    E92000001
#> 1011        2026         Week 20 Year to date  Local authority    E92000001
#> 1012        2026         Week 20 Year to date  Local authority    E92000001
#> 1013        2026         Week 20 Year to date  Local authority    E92000001
#> 1014        2026         Week 20 Year to date  Local authority    E92000001
#> 1015        2026         Week 20 Year to date  Local authority    E92000001
#> 1016        2026         Week 20 Year to date  Local authority    E92000001
#> 1017        2026         Week 20 Year to date  Local authority    E92000001
#> 1018        2026         Week 20 Year to date  Local authority    E92000001
#> 1019        2026         Week 20 Year to date         Regional    E92000001
#> 1020        2026         Week 20 Year to date         Regional    E92000001
#> 1021        2026         Week 20 Year to date         Regional    E92000001
#> 1022        2026         Week 20 Year to date         Regional    E92000001
#> 1023        2026         Week 20 Year to date  Local authority    E92000001
#> 1024        2026         Week 20 Year to date  Local authority    E92000001
#> 1025        2026         Week 20 Year to date  Local authority    E92000001
#> 1026        2026         Week 20 Year to date  Local authority    E92000001
#> 1027        2026         Week 20 Year to date  Local authority    E92000001
#> 1028        2026         Week 20 Year to date  Local authority    E92000001
#> 1029        2026         Week 20 Year to date  Local authority    E92000001
#> 1030        2026         Week 20 Year to date  Local authority    E92000001
#> 1031        2026         Week 20 Year to date  Local authority    E92000001
#> 1032        2026         Week 20 Year to date  Local authority    E92000001
#> 1033        2026         Week 20 Year to date  Local authority    E92000001
#> 1034        2026         Week 20 Year to date  Local authority    E92000001
#> 1035        2026         Week 20 Year to date  Local authority    E92000001
#> 1036        2026         Week 20 Year to date  Local authority    E92000001
#> 1037        2026         Week 20 Year to date  Local authority    E92000001
#> 1038        2026         Week 20 Year to date  Local authority    E92000001
#> 1039        2026         Week 20 Year to date  Local authority    E92000001
#> 1040        2026         Week 20 Year to date  Local authority    E92000001
#> 1041        2026         Week 20 Year to date  Local authority    E92000001
#> 1042        2026         Week 20 Year to date  Local authority    E92000001
#> 1043        2026         Week 20 Year to date  Local authority    E92000001
#> 1044        2026         Week 20 Year to date  Local authority    E92000001
#> 1045        2026         Week 20 Year to date  Local authority    E92000001
#> 1046        2026         Week 20 Year to date  Local authority    E92000001
#> 1047        2026         Week 20 Year to date  Local authority    E92000001
#> 1048        2026         Week 20 Year to date  Local authority    E92000001
#> 1049        2026         Week 20 Year to date  Local authority    E92000001
#> 1050        2026         Week 20 Year to date  Local authority    E92000001
#> 1051        2026         Week 20 Year to date  Local authority    E92000001
#> 1052        2026         Week 20 Year to date  Local authority    E92000001
#> 1053        2026         Week 20 Year to date  Local authority    E92000001
#> 1054        2026         Week 20 Year to date  Local authority    E92000001
#> 1055        2026         Week 20 Year to date  Local authority    E92000001
#> 1056        2026         Week 20 Year to date  Local authority    E92000001
#> 1057        2026         Week 20 Year to date  Local authority    E92000001
#> 1058        2026         Week 20 Year to date  Local authority    E92000001
#> 1059        2026         Week 20 Year to date  Local authority    E92000001
#> 1060        2026         Week 20 Year to date  Local authority    E92000001
#> 1061        2026         Week 20 Year to date  Local authority    E92000001
#> 1062        2026         Week 20 Year to date  Local authority    E92000001
#> 1063        2026         Week 20 Year to date  Local authority    E92000001
#> 1064        2026         Week 20 Year to date  Local authority    E92000001
#> 1065        2026         Week 20 Year to date  Local authority    E92000001
#> 1066        2026         Week 20 Year to date  Local authority    E92000001
#> 1067        2026         Week 20 Year to date  Local authority    E92000001
#> 1068        2026         Week 20 Year to date  Local authority    E92000001
#> 1069        2026         Week 20 Year to date  Local authority    E92000001
#> 1070        2026         Week 20 Year to date  Local authority    E92000001
#> 1071        2026         Week 20 Year to date  Local authority    E92000001
#> 1072        2026         Week 20 Year to date  Local authority    E92000001
#> 1073        2026         Week 20 Year to date  Local authority    E92000001
#> 1074        2026         Week 20 Year to date  Local authority    E92000001
#> 1075        2026         Week 20 Year to date  Local authority    E92000001
#> 1076        2026         Week 20 Year to date  Local authority    E92000001
#> 1077        2026         Week 20 Year to date  Local authority    E92000001
#> 1078        2026         Week 20 Year to date  Local authority    E92000001
#> 1079        2026         Week 20 Year to date  Local authority    E92000001
#> 1080        2026         Week 20 Year to date  Local authority    E92000001
#> 1081        2026         Week 20 Year to date  Local authority    E92000001
#> 1082        2026         Week 20 Year to date  Local authority    E92000001
#> 1083        2026         Week 20 Year to date  Local authority    E92000001
#> 1084        2026         Week 20 Year to date  Local authority    E92000001
#> 1085        2026         Week 20 Year to date  Local authority    E92000001
#> 1086        2026         Week 20 Year to date  Local authority    E92000001
#> 1087        2026         Week 20 Year to date  Local authority    E92000001
#> 1088        2026         Week 20 Year to date  Local authority    E92000001
#> 1089        2026         Week 20 Year to date  Local authority    E92000001
#> 1090        2026         Week 20 Year to date  Local authority    E92000001
#> 1091        2026         Week 20 Year to date  Local authority    E92000001
#> 1092        2026         Week 20 Year to date  Local authority    E92000001
#> 1093        2026         Week 20 Year to date  Local authority    E92000001
#> 1094        2026         Week 20 Year to date  Local authority    E92000001
#> 1095        2026         Week 20 Year to date  Local authority    E92000001
#> 1096        2026         Week 20 Year to date  Local authority    E92000001
#> 1097        2026         Week 20 Year to date  Local authority    E92000001
#> 1098        2026         Week 20 Year to date  Local authority    E92000001
#> 1099        2026         Week 20 Year to date  Local authority    E92000001
#> 1100        2026         Week 20 Year to date  Local authority    E92000001
#> 1101        2026         Week 20 Year to date  Local authority    E92000001
#> 1102        2026         Week 20 Year to date  Local authority    E92000001
#> 1103        2026         Week 20 Year to date  Local authority    E92000001
#> 1104        2026         Week 20 Year to date  Local authority    E92000001
#> 1105        2026         Week 20 Year to date  Local authority    E92000001
#> 1106        2026         Week 20 Year to date  Local authority    E92000001
#> 1107        2026         Week 20 Year to date  Local authority    E92000001
#> 1108        2026         Week 20 Year to date  Local authority    E92000001
#> 1109        2026         Week 20 Year to date  Local authority    E92000001
#> 1110        2026         Week 20 Year to date  Local authority    E92000001
#> 1111        2026         Week 20 Year to date  Local authority    E92000001
#> 1112        2026         Week 20 Year to date  Local authority    E92000001
#> 1113        2026         Week 20 Year to date  Local authority    E92000001
#> 1114        2026         Week 20 Year to date  Local authority    E92000001
#> 1115        2026         Week 20 Year to date  Local authority    E92000001
#> 1116        2026         Week 20 Year to date  Local authority    E92000001
#> 1117        2026         Week 20 Year to date  Local authority    E92000001
#> 1118        2026         Week 20 Year to date  Local authority    E92000001
#> 1119        2026         Week 20 Year to date  Local authority    E92000001
#> 1120        2026         Week 20 Year to date  Local authority    E92000001
#> 1121        2026         Week 20 Year to date  Local authority    E92000001
#> 1122        2026         Week 20 Year to date  Local authority    E92000001
#> 1123        2026         Week 20 Year to date  Local authority    E92000001
#> 1124        2026         Week 20 Year to date  Local authority    E92000001
#> 1125        2026         Week 20 Year to date  Local authority    E92000001
#> 1126        2026         Week 20 Year to date  Local authority    E92000001
#> 1127        2026         Week 20 Year to date  Local authority    E92000001
#> 1128        2026         Week 20 Year to date  Local authority    E92000001
#> 1129        2026         Week 20 Year to date  Local authority    E92000001
#> 1130        2026         Week 20 Year to date  Local authority    E92000001
#> 1131        2026         Week 20 Year to date  Local authority    E92000001
#> 1132        2026         Week 20 Year to date  Local authority    E92000001
#> 1133        2026         Week 20 Year to date  Local authority    E92000001
#> 1134        2026         Week 20 Year to date  Local authority    E92000001
#> 1135        2026         Week 20 Year to date  Local authority    E92000001
#> 1136        2026         Week 20 Year to date  Local authority    E92000001
#> 1137        2026         Week 20 Year to date  Local authority    E92000001
#> 1138        2026         Week 20 Year to date  Local authority    E92000001
#> 1139        2026         Week 20 Year to date  Local authority    E92000001
#> 1140        2026         Week 20 Year to date  Local authority    E92000001
#> 1141        2026         Week 20 Year to date  Local authority    E92000001
#> 1142        2026         Week 20 Year to date  Local authority    E92000001
#> 1143        2026         Week 20 Year to date  Local authority    E92000001
#> 1144        2026         Week 20 Year to date  Local authority    E92000001
#> 1145        2026         Week 20 Year to date  Local authority    E92000001
#> 1146        2026         Week 20 Year to date  Local authority    E92000001
#> 1147        2026         Week 20 Year to date  Local authority    E92000001
#> 1148        2026         Week 20 Year to date  Local authority    E92000001
#> 1149        2026         Week 20 Year to date  Local authority    E92000001
#> 1150        2026         Week 20 Year to date  Local authority    E92000001
#> 1151        2026         Week 20 Year to date  Local authority    E92000001
#> 1152        2026         Week 20 Year to date  Local authority    E92000001
#> 1153        2026         Week 20 Year to date         Regional    E92000001
#> 1154        2026         Week 20 Year to date         Regional    E92000001
#> 1155        2026         Week 20 Year to date         Regional    E92000001
#> 1156        2026         Week 20 Year to date         Regional    E92000001
#> 1157        2026         Week 20 Year to date  Local authority    E92000001
#> 1158        2026         Week 20 Year to date  Local authority    E92000001
#> 1159        2026         Week 20 Year to date  Local authority    E92000001
#> 1160        2026         Week 20 Year to date  Local authority    E92000001
#> 1161        2026         Week 20 Year to date  Local authority    E92000001
#> 1162        2026         Week 20 Year to date  Local authority    E92000001
#> 1163        2026         Week 20 Year to date  Local authority    E92000001
#> 1164        2026         Week 20 Year to date  Local authority    E92000001
#> 1165        2026         Week 20 Year to date  Local authority    E92000001
#> 1166        2026         Week 20 Year to date  Local authority    E92000001
#> 1167        2026         Week 20 Year to date  Local authority    E92000001
#> 1168        2026         Week 20 Year to date  Local authority    E92000001
#> 1169        2026         Week 20 Year to date  Local authority    E92000001
#> 1170        2026         Week 20 Year to date  Local authority    E92000001
#> 1171        2026         Week 20 Year to date  Local authority    E92000001
#> 1172        2026         Week 20 Year to date  Local authority    E92000001
#> 1173        2026         Week 20 Year to date  Local authority    E92000001
#> 1174        2026         Week 20 Year to date  Local authority    E92000001
#> 1175        2026         Week 20 Year to date  Local authority    E92000001
#> 1176        2026         Week 20 Year to date  Local authority    E92000001
#> 1177        2026         Week 20 Year to date  Local authority    E92000001
#> 1178        2026         Week 20 Year to date  Local authority    E92000001
#> 1179        2026         Week 20 Year to date  Local authority    E92000001
#> 1180        2026         Week 20 Year to date  Local authority    E92000001
#> 1181        2026         Week 20 Year to date  Local authority    E92000001
#> 1182        2026         Week 20 Year to date  Local authority    E92000001
#> 1183        2026         Week 20 Year to date  Local authority    E92000001
#> 1184        2026         Week 20 Year to date  Local authority    E92000001
#> 1185        2026         Week 20 Year to date  Local authority    E92000001
#> 1186        2026         Week 20 Year to date  Local authority    E92000001
#> 1187        2026         Week 20 Year to date  Local authority    E92000001
#> 1188        2026         Week 20 Year to date  Local authority    E92000001
#> 1189        2026         Week 20 Year to date  Local authority    E92000001
#> 1190        2026         Week 20 Year to date  Local authority    E92000001
#> 1191        2026         Week 20 Year to date  Local authority    E92000001
#> 1192        2026         Week 20 Year to date  Local authority    E92000001
#> 1193        2026         Week 20 Year to date  Local authority    E92000001
#> 1194        2026         Week 20 Year to date  Local authority    E92000001
#> 1195        2026         Week 20 Year to date  Local authority    E92000001
#> 1196        2026         Week 20 Year to date  Local authority    E92000001
#> 1197        2026         Week 20 Year to date  Local authority    E92000001
#> 1198        2026         Week 20 Year to date  Local authority    E92000001
#> 1199        2026         Week 20 Year to date  Local authority    E92000001
#> 1200        2026         Week 20 Year to date  Local authority    E92000001
#> 1201        2026         Week 20 Year to date  Local authority    E92000001
#> 1202        2026         Week 20 Year to date  Local authority    E92000001
#> 1203        2026         Week 20 Year to date  Local authority    E92000001
#> 1204        2026         Week 20 Year to date  Local authority    E92000001
#> 1205        2026         Week 20 Year to date  Local authority    E92000001
#> 1206        2026         Week 20 Year to date  Local authority    E92000001
#> 1207        2026         Week 20 Year to date  Local authority    E92000001
#> 1208        2026         Week 20 Year to date  Local authority    E92000001
#> 1209        2026         Week 20 Year to date  Local authority    E92000001
#> 1210        2026         Week 20 Year to date  Local authority    E92000001
#> 1211        2026         Week 20 Year to date  Local authority    E92000001
#> 1212        2026         Week 20 Year to date  Local authority    E92000001
#> 1213        2026         Week 20 Year to date  Local authority    E92000001
#> 1214        2026         Week 20 Year to date  Local authority    E92000001
#> 1215        2026         Week 20 Year to date  Local authority    E92000001
#> 1216        2026         Week 20 Year to date  Local authority    E92000001
#> 1217        2026         Week 20 Year to date  Local authority    E92000001
#> 1218        2026         Week 20 Year to date  Local authority    E92000001
#> 1219        2026         Week 20 Year to date  Local authority    E92000001
#> 1220        2026         Week 20 Year to date  Local authority    E92000001
#> 1221        2026         Week 20 Year to date  Local authority    E92000001
#> 1222        2026         Week 20 Year to date  Local authority    E92000001
#> 1223        2026         Week 20 Year to date  Local authority    E92000001
#> 1224        2026         Week 20 Year to date  Local authority    E92000001
#> 1225        2026         Week 20 Year to date  Local authority    E92000001
#> 1226        2026         Week 20 Year to date  Local authority    E92000001
#> 1227        2026         Week 20 Year to date  Local authority    E92000001
#> 1228        2026         Week 20 Year to date  Local authority    E92000001
#> 1229        2026         Week 20 Year to date  Local authority    E92000001
#> 1230        2026         Week 20 Year to date  Local authority    E92000001
#> 1231        2026         Week 20 Year to date  Local authority    E92000001
#> 1232        2026         Week 20 Year to date  Local authority    E92000001
#> 1233        2026         Week 20 Year to date         Regional    E92000001
#> 1234        2026         Week 20 Year to date         Regional    E92000001
#> 1235        2026         Week 20 Year to date         Regional    E92000001
#> 1236        2026         Week 20 Year to date         Regional    E92000001
#> 1237        2026         Week 20 Year to date  Local authority    E92000001
#> 1238        2026         Week 20 Year to date  Local authority    E92000001
#> 1239        2026         Week 20 Year to date  Local authority    E92000001
#> 1240        2026         Week 20 Year to date  Local authority    E92000001
#> 1241        2026         Week 20 Year to date  Local authority    E92000001
#> 1242        2026         Week 20 Year to date  Local authority    E92000001
#> 1243        2026         Week 20 Year to date  Local authority    E92000001
#> 1244        2026         Week 20 Year to date  Local authority    E92000001
#> 1245        2026         Week 20 Year to date  Local authority    E92000001
#> 1246        2026         Week 20 Year to date  Local authority    E92000001
#> 1247        2026         Week 20 Year to date  Local authority    E92000001
#> 1248        2026         Week 20 Year to date  Local authority    E92000001
#> 1249        2026         Week 20 Year to date  Local authority    E92000001
#> 1250        2026         Week 20 Year to date  Local authority    E92000001
#> 1251        2026         Week 20 Year to date  Local authority    E92000001
#> 1252        2026         Week 20 Year to date  Local authority    E92000001
#> 1253        2026         Week 20 Year to date  Local authority    E92000001
#> 1254        2026         Week 20 Year to date  Local authority    E92000001
#> 1255        2026         Week 20 Year to date  Local authority    E92000001
#> 1256        2026         Week 20 Year to date  Local authority    E92000001
#> 1257        2026         Week 20 Year to date  Local authority    E92000001
#> 1258        2026         Week 20 Year to date  Local authority    E92000001
#> 1259        2026         Week 20 Year to date  Local authority    E92000001
#> 1260        2026         Week 20 Year to date  Local authority    E92000001
#> 1261        2026         Week 20 Year to date  Local authority    E92000001
#> 1262        2026         Week 20 Year to date  Local authority    E92000001
#> 1263        2026         Week 20 Year to date  Local authority    E92000001
#> 1264        2026         Week 20 Year to date  Local authority    E92000001
#> 1265        2026         Week 20 Year to date  Local authority    E92000001
#> 1266        2026         Week 20 Year to date  Local authority    E92000001
#> 1267        2026         Week 20 Year to date  Local authority    E92000001
#> 1268        2026         Week 20 Year to date  Local authority    E92000001
#> 1269        2026         Week 20 Year to date  Local authority    E92000001
#> 1270        2026         Week 20 Year to date  Local authority    E92000001
#> 1271        2026         Week 20 Year to date  Local authority    E92000001
#> 1272        2026         Week 20 Year to date  Local authority    E92000001
#> 1273        2026         Week 20 Year to date  Local authority    E92000001
#> 1274        2026         Week 20 Year to date  Local authority    E92000001
#> 1275        2026         Week 20 Year to date  Local authority    E92000001
#> 1276        2026         Week 20 Year to date  Local authority    E92000001
#> 1277        2026         Week 20 Year to date  Local authority    E92000001
#> 1278        2026         Week 20 Year to date  Local authority    E92000001
#> 1279        2026         Week 20 Year to date  Local authority    E92000001
#> 1280        2026         Week 20 Year to date  Local authority    E92000001
#> 1281        2026         Week 20 Year to date  Local authority    E92000001
#> 1282        2026         Week 20 Year to date  Local authority    E92000001
#> 1283        2026         Week 20 Year to date  Local authority    E92000001
#> 1284        2026         Week 20 Year to date  Local authority    E92000001
#> 1285        2026         Week 20 Year to date  Local authority    E92000001
#> 1286        2026         Week 20 Year to date  Local authority    E92000001
#> 1287        2026         Week 20 Year to date  Local authority    E92000001
#> 1288        2026         Week 20 Year to date  Local authority    E92000001
#> 1289        2026         Week 20 Year to date  Local authority    E92000001
#> 1290        2026         Week 20 Year to date  Local authority    E92000001
#> 1291        2026         Week 20 Year to date  Local authority    E92000001
#> 1292        2026         Week 20 Year to date  Local authority    E92000001
#> 1293        2026         Week 20 Year to date  Local authority    E92000001
#> 1294        2026         Week 20 Year to date  Local authority    E92000001
#> 1295        2026         Week 18 Year to date         National    E92000001
#> 1296        2026         Week 18 Year to date         National    E92000001
#> 1297        2026         Week 18 Year to date         National    E92000001
#> 1298        2026         Week 18 Year to date         National    E92000001
#> 1299        2026         Week 18 Year to date         Regional    E92000001
#> 1300        2026         Week 18 Year to date         Regional    E92000001
#> 1301        2026         Week 18 Year to date         Regional    E92000001
#> 1302        2026         Week 18 Year to date         Regional    E92000001
#> 1303        2026         Week 18 Year to date  Local authority    E92000001
#> 1304        2026         Week 18 Year to date  Local authority    E92000001
#> 1305        2026         Week 18 Year to date  Local authority    E92000001
#> 1306        2026         Week 18 Year to date  Local authority    E92000001
#> 1307        2026         Week 18 Year to date  Local authority    E92000001
#> 1308        2026         Week 18 Year to date  Local authority    E92000001
#> 1309        2026         Week 18 Year to date  Local authority    E92000001
#> 1310        2026         Week 18 Year to date  Local authority    E92000001
#> 1311        2026         Week 18 Year to date  Local authority    E92000001
#> 1312        2026         Week 18 Year to date  Local authority    E92000001
#> 1313        2026         Week 18 Year to date  Local authority    E92000001
#> 1314        2026         Week 18 Year to date  Local authority    E92000001
#> 1315        2026         Week 18 Year to date  Local authority    E92000001
#> 1316        2026         Week 18 Year to date  Local authority    E92000001
#> 1317        2026         Week 18 Year to date  Local authority    E92000001
#> 1318        2026         Week 18 Year to date  Local authority    E92000001
#> 1319        2026         Week 18 Year to date  Local authority    E92000001
#> 1320        2026         Week 18 Year to date  Local authority    E92000001
#> 1321        2026         Week 18 Year to date  Local authority    E92000001
#> 1322        2026         Week 18 Year to date  Local authority    E92000001
#> 1323        2026         Week 18 Year to date  Local authority    E92000001
#> 1324        2026         Week 18 Year to date  Local authority    E92000001
#> 1325        2026         Week 18 Year to date  Local authority    E92000001
#> 1326        2026         Week 18 Year to date  Local authority    E92000001
#> 1327        2026         Week 18 Year to date  Local authority    E92000001
#> 1328        2026         Week 18 Year to date  Local authority    E92000001
#> 1329        2026         Week 18 Year to date  Local authority    E92000001
#> 1330        2026         Week 18 Year to date  Local authority    E92000001
#> 1331        2026         Week 18 Year to date  Local authority    E92000001
#> 1332        2026         Week 18 Year to date  Local authority    E92000001
#> 1333        2026         Week 18 Year to date  Local authority    E92000001
#> 1334        2026         Week 18 Year to date  Local authority    E92000001
#> 1335        2026         Week 18 Year to date  Local authority    E92000001
#> 1336        2026         Week 18 Year to date  Local authority    E92000001
#> 1337        2026         Week 18 Year to date  Local authority    E92000001
#> 1338        2026         Week 18 Year to date  Local authority    E92000001
#> 1339        2026         Week 18 Year to date  Local authority    E92000001
#> 1340        2026         Week 18 Year to date  Local authority    E92000001
#> 1341        2026         Week 18 Year to date  Local authority    E92000001
#> 1342        2026         Week 18 Year to date  Local authority    E92000001
#> 1343        2026         Week 18 Year to date  Local authority    E92000001
#> 1344        2026         Week 18 Year to date  Local authority    E92000001
#> 1345        2026         Week 18 Year to date  Local authority    E92000001
#> 1346        2026         Week 18 Year to date  Local authority    E92000001
#> 1347        2026         Week 18 Year to date  Local authority    E92000001
#> 1348        2026         Week 18 Year to date  Local authority    E92000001
#> 1349        2026         Week 18 Year to date  Local authority    E92000001
#> 1350        2026         Week 18 Year to date  Local authority    E92000001
#> 1351        2026         Week 18 Year to date         Regional    E92000001
#> 1352        2026         Week 18 Year to date         Regional    E92000001
#> 1353        2026         Week 18 Year to date         Regional    E92000001
#> 1354        2026         Week 18 Year to date         Regional    E92000001
#> 1355        2026         Week 18 Year to date  Local authority    E92000001
#> 1356        2026         Week 18 Year to date  Local authority    E92000001
#> 1357        2026         Week 18 Year to date  Local authority    E92000001
#> 1358        2026         Week 18 Year to date  Local authority    E92000001
#> 1359        2026         Week 18 Year to date  Local authority    E92000001
#> 1360        2026         Week 18 Year to date  Local authority    E92000001
#> 1361        2026         Week 18 Year to date  Local authority    E92000001
#> 1362        2026         Week 18 Year to date  Local authority    E92000001
#> 1363        2026         Week 18 Year to date  Local authority    E92000001
#> 1364        2026         Week 18 Year to date  Local authority    E92000001
#> 1365        2026         Week 18 Year to date  Local authority    E92000001
#> 1366        2026         Week 18 Year to date  Local authority    E92000001
#> 1367        2026         Week 18 Year to date  Local authority    E92000001
#> 1368        2026         Week 18 Year to date  Local authority    E92000001
#> 1369        2026         Week 18 Year to date  Local authority    E92000001
#> 1370        2026         Week 18 Year to date  Local authority    E92000001
#> 1371        2026         Week 18 Year to date  Local authority    E92000001
#> 1372        2026         Week 18 Year to date  Local authority    E92000001
#> 1373        2026         Week 18 Year to date  Local authority    E92000001
#> 1374        2026         Week 18 Year to date  Local authority    E92000001
#> 1375        2026         Week 18 Year to date  Local authority    E92000001
#> 1376        2026         Week 18 Year to date  Local authority    E92000001
#> 1377        2026         Week 18 Year to date  Local authority    E92000001
#> 1378        2026         Week 18 Year to date  Local authority    E92000001
#> 1379        2026         Week 18 Year to date  Local authority    E92000001
#> 1380        2026         Week 18 Year to date  Local authority    E92000001
#> 1381        2026         Week 18 Year to date  Local authority    E92000001
#> 1382        2026         Week 18 Year to date  Local authority    E92000001
#> 1383        2026         Week 18 Year to date  Local authority    E92000001
#> 1384        2026         Week 18 Year to date  Local authority    E92000001
#> 1385        2026         Week 18 Year to date  Local authority    E92000001
#> 1386        2026         Week 18 Year to date  Local authority    E92000001
#> 1387        2026         Week 18 Year to date  Local authority    E92000001
#> 1388        2026         Week 18 Year to date  Local authority    E92000001
#> 1389        2026         Week 18 Year to date  Local authority    E92000001
#> 1390        2026         Week 18 Year to date  Local authority    E92000001
#> 1391        2026         Week 18 Year to date  Local authority    E92000001
#> 1392        2026         Week 18 Year to date  Local authority    E92000001
#> 1393        2026         Week 18 Year to date  Local authority    E92000001
#> 1394        2026         Week 18 Year to date  Local authority    E92000001
#> 1395        2026         Week 18 Year to date  Local authority    E92000001
#> 1396        2026         Week 18 Year to date  Local authority    E92000001
#> 1397        2026         Week 18 Year to date  Local authority    E92000001
#> 1398        2026         Week 18 Year to date  Local authority    E92000001
#> 1399        2026         Week 18 Year to date  Local authority    E92000001
#> 1400        2026         Week 18 Year to date  Local authority    E92000001
#> 1401        2026         Week 18 Year to date  Local authority    E92000001
#> 1402        2026         Week 18 Year to date  Local authority    E92000001
#> 1403        2026         Week 18 Year to date  Local authority    E92000001
#> 1404        2026         Week 18 Year to date  Local authority    E92000001
#> 1405        2026         Week 18 Year to date  Local authority    E92000001
#> 1406        2026         Week 18 Year to date  Local authority    E92000001
#> 1407        2026         Week 18 Year to date  Local authority    E92000001
#> 1408        2026         Week 18 Year to date  Local authority    E92000001
#> 1409        2026         Week 18 Year to date  Local authority    E92000001
#> 1410        2026         Week 18 Year to date  Local authority    E92000001
#> 1411        2026         Week 18 Year to date  Local authority    E92000001
#> 1412        2026         Week 18 Year to date  Local authority    E92000001
#> 1413        2026         Week 18 Year to date  Local authority    E92000001
#> 1414        2026         Week 18 Year to date  Local authority    E92000001
#> 1415        2026         Week 18 Year to date  Local authority    E92000001
#> 1416        2026         Week 18 Year to date  Local authority    E92000001
#> 1417        2026         Week 18 Year to date  Local authority    E92000001
#> 1418        2026         Week 18 Year to date  Local authority    E92000001
#> 1419        2026         Week 18 Year to date  Local authority    E92000001
#> 1420        2026         Week 18 Year to date  Local authority    E92000001
#> 1421        2026         Week 18 Year to date  Local authority    E92000001
#> 1422        2026         Week 18 Year to date  Local authority    E92000001
#> 1423        2026         Week 18 Year to date  Local authority    E92000001
#> 1424        2026         Week 18 Year to date  Local authority    E92000001
#> 1425        2026         Week 18 Year to date  Local authority    E92000001
#> 1426        2026         Week 18 Year to date  Local authority    E92000001
#> 1427        2026         Week 18 Year to date  Local authority    E92000001
#> 1428        2026         Week 18 Year to date  Local authority    E92000001
#> 1429        2026         Week 18 Year to date  Local authority    E92000001
#> 1430        2026         Week 18 Year to date  Local authority    E92000001
#> 1431        2026         Week 18 Year to date  Local authority    E92000001
#> 1432        2026         Week 18 Year to date  Local authority    E92000001
#> 1433        2026         Week 18 Year to date  Local authority    E92000001
#> 1434        2026         Week 18 Year to date  Local authority    E92000001
#> 1435        2026         Week 18 Year to date  Local authority    E92000001
#> 1436        2026         Week 18 Year to date  Local authority    E92000001
#> 1437        2026         Week 18 Year to date  Local authority    E92000001
#> 1438        2026         Week 18 Year to date  Local authority    E92000001
#> 1439        2026         Week 18 Year to date  Local authority    E92000001
#> 1440        2026         Week 18 Year to date  Local authority    E92000001
#> 1441        2026         Week 18 Year to date  Local authority    E92000001
#> 1442        2026         Week 18 Year to date  Local authority    E92000001
#> 1443        2026         Week 18 Year to date  Local authority    E92000001
#> 1444        2026         Week 18 Year to date  Local authority    E92000001
#> 1445        2026         Week 18 Year to date  Local authority    E92000001
#> 1446        2026         Week 18 Year to date  Local authority    E92000001
#> 1447        2026         Week 18 Year to date  Local authority    E92000001
#> 1448        2026         Week 18 Year to date  Local authority    E92000001
#> 1449        2026         Week 18 Year to date  Local authority    E92000001
#> 1450        2026         Week 18 Year to date  Local authority    E92000001
#> 1451        2026         Week 18 Year to date         Regional    E92000001
#> 1452        2026         Week 18 Year to date         Regional    E92000001
#> 1453        2026         Week 18 Year to date         Regional    E92000001
#> 1454        2026         Week 18 Year to date         Regional    E92000001
#> 1455        2026         Week 18 Year to date  Local authority    E92000001
#> 1456        2026         Week 18 Year to date  Local authority    E92000001
#> 1457        2026         Week 18 Year to date  Local authority    E92000001
#> 1458        2026         Week 18 Year to date  Local authority    E92000001
#> 1459        2026         Week 18 Year to date  Local authority    E92000001
#> 1460        2026         Week 18 Year to date  Local authority    E92000001
#> 1461        2026         Week 18 Year to date  Local authority    E92000001
#> 1462        2026         Week 18 Year to date  Local authority    E92000001
#> 1463        2026         Week 18 Year to date  Local authority    E92000001
#> 1464        2026         Week 18 Year to date  Local authority    E92000001
#> 1465        2026         Week 18 Year to date  Local authority    E92000001
#> 1466        2026         Week 18 Year to date  Local authority    E92000001
#> 1467        2026         Week 18 Year to date  Local authority    E92000001
#> 1468        2026         Week 18 Year to date  Local authority    E92000001
#> 1469        2026         Week 18 Year to date  Local authority    E92000001
#> 1470        2026         Week 18 Year to date  Local authority    E92000001
#> 1471        2026         Week 18 Year to date  Local authority    E92000001
#> 1472        2026         Week 18 Year to date  Local authority    E92000001
#> 1473        2026         Week 18 Year to date  Local authority    E92000001
#> 1474        2026         Week 18 Year to date  Local authority    E92000001
#> 1475        2026         Week 18 Year to date  Local authority    E92000001
#> 1476        2026         Week 18 Year to date  Local authority    E92000001
#> 1477        2026         Week 18 Year to date  Local authority    E92000001
#> 1478        2026         Week 18 Year to date  Local authority    E92000001
#> 1479        2026         Week 18 Year to date  Local authority    E92000001
#> 1480        2026         Week 18 Year to date  Local authority    E92000001
#> 1481        2026         Week 18 Year to date  Local authority    E92000001
#> 1482        2026         Week 18 Year to date  Local authority    E92000001
#> 1483        2026         Week 18 Year to date  Local authority    E92000001
#> 1484        2026         Week 18 Year to date  Local authority    E92000001
#> 1485        2026         Week 18 Year to date  Local authority    E92000001
#> 1486        2026         Week 18 Year to date  Local authority    E92000001
#> 1487        2026         Week 18 Year to date  Local authority    E92000001
#> 1488        2026         Week 18 Year to date  Local authority    E92000001
#> 1489        2026         Week 18 Year to date  Local authority    E92000001
#> 1490        2026         Week 18 Year to date  Local authority    E92000001
#> 1491        2026         Week 18 Year to date  Local authority    E92000001
#> 1492        2026         Week 18 Year to date  Local authority    E92000001
#> 1493        2026         Week 18 Year to date  Local authority    E92000001
#> 1494        2026         Week 18 Year to date  Local authority    E92000001
#> 1495        2026         Week 18 Year to date  Local authority    E92000001
#> 1496        2026         Week 18 Year to date  Local authority    E92000001
#> 1497        2026         Week 18 Year to date  Local authority    E92000001
#> 1498        2026         Week 18 Year to date  Local authority    E92000001
#> 1499        2026         Week 18 Year to date  Local authority    E92000001
#> 1500        2026         Week 18 Year to date  Local authority    E92000001
#> 1501        2026         Week 18 Year to date  Local authority    E92000001
#> 1502        2026         Week 18 Year to date  Local authority    E92000001
#> 1503        2026         Week 18 Year to date  Local authority    E92000001
#> 1504        2026         Week 18 Year to date  Local authority    E92000001
#> 1505        2026         Week 18 Year to date  Local authority    E92000001
#> 1506        2026         Week 18 Year to date  Local authority    E92000001
#> 1507        2026         Week 18 Year to date  Local authority    E92000001
#> 1508        2026         Week 18 Year to date  Local authority    E92000001
#> 1509        2026         Week 18 Year to date  Local authority    E92000001
#> 1510        2026         Week 18 Year to date  Local authority    E92000001
#> 1511        2026         Week 18 Year to date  Local authority    E92000001
#> 1512        2026         Week 18 Year to date  Local authority    E92000001
#> 1513        2026         Week 18 Year to date  Local authority    E92000001
#> 1514        2026         Week 18 Year to date  Local authority    E92000001
#> 1515        2026         Week 18 Year to date         Regional    E92000001
#> 1516        2026         Week 18 Year to date         Regional    E92000001
#> 1517        2026         Week 18 Year to date         Regional    E92000001
#> 1518        2026         Week 18 Year to date         Regional    E92000001
#> 1519        2026         Week 18 Year to date  Local authority    E92000001
#> 1520        2026         Week 18 Year to date  Local authority    E92000001
#> 1521        2026         Week 18 Year to date  Local authority    E92000001
#> 1522        2026         Week 18 Year to date  Local authority    E92000001
#> 1523        2026         Week 18 Year to date  Local authority    E92000001
#> 1524        2026         Week 18 Year to date  Local authority    E92000001
#> 1525        2026         Week 18 Year to date  Local authority    E92000001
#> 1526        2026         Week 18 Year to date  Local authority    E92000001
#> 1527        2026         Week 18 Year to date  Local authority    E92000001
#> 1528        2026         Week 18 Year to date  Local authority    E92000001
#> 1529        2026         Week 18 Year to date  Local authority    E92000001
#> 1530        2026         Week 18 Year to date  Local authority    E92000001
#> 1531        2026         Week 18 Year to date  Local authority    E92000001
#> 1532        2026         Week 18 Year to date  Local authority    E92000001
#> 1533        2026         Week 18 Year to date  Local authority    E92000001
#> 1534        2026         Week 18 Year to date  Local authority    E92000001
#> 1535        2026         Week 18 Year to date  Local authority    E92000001
#> 1536        2026         Week 18 Year to date  Local authority    E92000001
#> 1537        2026         Week 18 Year to date  Local authority    E92000001
#> 1538        2026         Week 18 Year to date  Local authority    E92000001
#> 1539        2026         Week 18 Year to date  Local authority    E92000001
#> 1540        2026         Week 18 Year to date  Local authority    E92000001
#> 1541        2026         Week 18 Year to date  Local authority    E92000001
#> 1542        2026         Week 18 Year to date  Local authority    E92000001
#> 1543        2026         Week 18 Year to date  Local authority    E92000001
#> 1544        2026         Week 18 Year to date  Local authority    E92000001
#> 1545        2026         Week 18 Year to date  Local authority    E92000001
#> 1546        2026         Week 18 Year to date  Local authority    E92000001
#> 1547        2026         Week 18 Year to date  Local authority    E92000001
#> 1548        2026         Week 18 Year to date  Local authority    E92000001
#> 1549        2026         Week 18 Year to date  Local authority    E92000001
#> 1550        2026         Week 18 Year to date  Local authority    E92000001
#> 1551        2026         Week 18 Year to date  Local authority    E92000001
#> 1552        2026         Week 18 Year to date  Local authority    E92000001
#> 1553        2026         Week 18 Year to date  Local authority    E92000001
#> 1554        2026         Week 18 Year to date  Local authority    E92000001
#> 1555        2026         Week 18 Year to date  Local authority    E92000001
#> 1556        2026         Week 18 Year to date  Local authority    E92000001
#> 1557        2026         Week 18 Year to date  Local authority    E92000001
#> 1558        2026         Week 18 Year to date         Regional    E92000001
#> 1559        2026         Week 18 Year to date         Regional    E92000001
#> 1560        2026         Week 18 Year to date         Regional    E92000001
#> 1561        2026         Week 18 Year to date         Regional    E92000001
#> 1562        2026         Week 18 Year to date  Local authority    E92000001
#> 1563        2026         Week 18 Year to date  Local authority    E92000001
#> 1564        2026         Week 18 Year to date  Local authority    E92000001
#> 1565        2026         Week 18 Year to date  Local authority    E92000001
#> 1566        2026         Week 18 Year to date  Local authority    E92000001
#> 1567        2026         Week 18 Year to date  Local authority    E92000001
#> 1568        2026         Week 18 Year to date  Local authority    E92000001
#> 1569        2026         Week 18 Year to date  Local authority    E92000001
#> 1570        2026         Week 18 Year to date  Local authority    E92000001
#> 1571        2026         Week 18 Year to date  Local authority    E92000001
#> 1572        2026         Week 18 Year to date  Local authority    E92000001
#> 1573        2026         Week 18 Year to date  Local authority    E92000001
#> 1574        2026         Week 18 Year to date  Local authority    E92000001
#> 1575        2026         Week 18 Year to date  Local authority    E92000001
#> 1576        2026         Week 18 Year to date  Local authority    E92000001
#> 1577        2026         Week 18 Year to date  Local authority    E92000001
#> 1578        2026         Week 18 Year to date  Local authority    E92000001
#> 1579        2026         Week 18 Year to date  Local authority    E92000001
#> 1580        2026         Week 18 Year to date  Local authority    E92000001
#> 1581        2026         Week 18 Year to date  Local authority    E92000001
#> 1582        2026         Week 18 Year to date  Local authority    E92000001
#> 1583        2026         Week 18 Year to date  Local authority    E92000001
#> 1584        2026         Week 18 Year to date  Local authority    E92000001
#> 1585        2026         Week 18 Year to date  Local authority    E92000001
#> 1586        2026         Week 18 Year to date  Local authority    E92000001
#> 1587        2026         Week 18 Year to date  Local authority    E92000001
#> 1588        2026         Week 18 Year to date  Local authority    E92000001
#> 1589        2026         Week 18 Year to date  Local authority    E92000001
#> 1590        2026         Week 18 Year to date  Local authority    E92000001
#> 1591        2026         Week 18 Year to date  Local authority    E92000001
#> 1592        2026         Week 18 Year to date  Local authority    E92000001
#> 1593        2026         Week 18 Year to date  Local authority    E92000001
#> 1594        2026         Week 18 Year to date  Local authority    E92000001
#> 1595        2026         Week 18 Year to date  Local authority    E92000001
#> 1596        2026         Week 18 Year to date  Local authority    E92000001
#> 1597        2026         Week 18 Year to date  Local authority    E92000001
#> 1598        2026         Week 18 Year to date  Local authority    E92000001
#> 1599        2026         Week 18 Year to date  Local authority    E92000001
#> 1600        2026         Week 18 Year to date  Local authority    E92000001
#> 1601        2026         Week 18 Year to date  Local authority    E92000001
#> 1602        2026         Week 18 Year to date  Local authority    E92000001
#> 1603        2026         Week 18 Year to date  Local authority    E92000001
#> 1604        2026         Week 18 Year to date  Local authority    E92000001
#> 1605        2026         Week 18 Year to date  Local authority    E92000001
#> 1606        2026         Week 18 Year to date  Local authority    E92000001
#> 1607        2026         Week 18 Year to date  Local authority    E92000001
#> 1608        2026         Week 18 Year to date  Local authority    E92000001
#> 1609        2026         Week 18 Year to date  Local authority    E92000001
#> 1610        2026         Week 18 Year to date  Local authority    E92000001
#> 1611        2026         Week 18 Year to date  Local authority    E92000001
#> 1612        2026         Week 18 Year to date  Local authority    E92000001
#> 1613        2026         Week 18 Year to date  Local authority    E92000001
#> 1614        2026         Week 18 Year to date  Local authority    E92000001
#> 1615        2026         Week 18 Year to date  Local authority    E92000001
#> 1616        2026         Week 18 Year to date  Local authority    E92000001
#> 1617        2026         Week 18 Year to date  Local authority    E92000001
#> 1618        2026         Week 18 Year to date         Regional    E92000001
#> 1619        2026         Week 18 Year to date         Regional    E92000001
#> 1620        2026         Week 18 Year to date         Regional    E92000001
#> 1621        2026         Week 18 Year to date         Regional    E92000001
#> 1622        2026         Week 18 Year to date  Local authority    E92000001
#> 1623        2026         Week 18 Year to date  Local authority    E92000001
#> 1624        2026         Week 18 Year to date  Local authority    E92000001
#> 1625        2026         Week 18 Year to date  Local authority    E92000001
#> 1626        2026         Week 18 Year to date  Local authority    E92000001
#> 1627        2026         Week 18 Year to date  Local authority    E92000001
#> 1628        2026         Week 18 Year to date  Local authority    E92000001
#> 1629        2026         Week 18 Year to date  Local authority    E92000001
#> 1630        2026         Week 18 Year to date  Local authority    E92000001
#> 1631        2026         Week 18 Year to date  Local authority    E92000001
#> 1632        2026         Week 18 Year to date  Local authority    E92000001
#> 1633        2026         Week 18 Year to date  Local authority    E92000001
#> 1634        2026         Week 18 Year to date  Local authority    E92000001
#> 1635        2026         Week 18 Year to date  Local authority    E92000001
#> 1636        2026         Week 18 Year to date  Local authority    E92000001
#> 1637        2026         Week 18 Year to date  Local authority    E92000001
#> 1638        2026         Week 18 Year to date  Local authority    E92000001
#> 1639        2026         Week 18 Year to date  Local authority    E92000001
#> 1640        2026         Week 18 Year to date  Local authority    E92000001
#> 1641        2026         Week 18 Year to date  Local authority    E92000001
#> 1642        2026         Week 18 Year to date  Local authority    E92000001
#> 1643        2026         Week 18 Year to date  Local authority    E92000001
#> 1644        2026         Week 18 Year to date  Local authority    E92000001
#> 1645        2026         Week 18 Year to date  Local authority    E92000001
#> 1646        2026         Week 18 Year to date  Local authority    E92000001
#> 1647        2026         Week 18 Year to date  Local authority    E92000001
#> 1648        2026         Week 18 Year to date  Local authority    E92000001
#> 1649        2026         Week 18 Year to date  Local authority    E92000001
#> 1650        2026         Week 18 Year to date  Local authority    E92000001
#> 1651        2026         Week 18 Year to date  Local authority    E92000001
#> 1652        2026         Week 18 Year to date  Local authority    E92000001
#> 1653        2026         Week 18 Year to date  Local authority    E92000001
#> 1654        2026         Week 18 Year to date  Local authority    E92000001
#> 1655        2026         Week 18 Year to date  Local authority    E92000001
#> 1656        2026         Week 18 Year to date  Local authority    E92000001
#> 1657        2026         Week 18 Year to date  Local authority    E92000001
#> 1658        2026         Week 18 Year to date  Local authority    E92000001
#> 1659        2026         Week 18 Year to date  Local authority    E92000001
#> 1660        2026         Week 18 Year to date  Local authority    E92000001
#> 1661        2026         Week 18 Year to date  Local authority    E92000001
#> 1662        2026         Week 18 Year to date  Local authority    E92000001
#> 1663        2026         Week 18 Year to date  Local authority    E92000001
#> 1664        2026         Week 18 Year to date  Local authority    E92000001
#> 1665        2026         Week 18 Year to date  Local authority    E92000001
#> 1666        2026         Week 18 Year to date         Regional    E92000001
#> 1667        2026         Week 18 Year to date         Regional    E92000001
#> 1668        2026         Week 18 Year to date         Regional    E92000001
#> 1669        2026         Week 18 Year to date         Regional    E92000001
#> 1670        2026         Week 18 Year to date  Local authority    E92000001
#> 1671        2026         Week 18 Year to date  Local authority    E92000001
#> 1672        2026         Week 18 Year to date  Local authority    E92000001
#> 1673        2026         Week 18 Year to date  Local authority    E92000001
#> 1674        2026         Week 18 Year to date  Local authority    E92000001
#> 1675        2026         Week 18 Year to date  Local authority    E92000001
#> 1676        2026         Week 18 Year to date  Local authority    E92000001
#> 1677        2026         Week 18 Year to date  Local authority    E92000001
#> 1678        2026         Week 18 Year to date  Local authority    E92000001
#> 1679        2026         Week 18 Year to date  Local authority    E92000001
#> 1680        2026         Week 18 Year to date  Local authority    E92000001
#> 1681        2026         Week 18 Year to date  Local authority    E92000001
#> 1682        2026         Week 18 Year to date  Local authority    E92000001
#> 1683        2026         Week 18 Year to date  Local authority    E92000001
#> 1684        2026         Week 18 Year to date  Local authority    E92000001
#> 1685        2026         Week 18 Year to date  Local authority    E92000001
#> 1686        2026         Week 18 Year to date  Local authority    E92000001
#> 1687        2026         Week 18 Year to date  Local authority    E92000001
#> 1688        2026         Week 18 Year to date  Local authority    E92000001
#> 1689        2026         Week 18 Year to date  Local authority    E92000001
#> 1690        2026         Week 18 Year to date  Local authority    E92000001
#> 1691        2026         Week 18 Year to date  Local authority    E92000001
#> 1692        2026         Week 18 Year to date  Local authority    E92000001
#> 1693        2026         Week 18 Year to date  Local authority    E92000001
#> 1694        2026         Week 18 Year to date  Local authority    E92000001
#> 1695        2026         Week 18 Year to date  Local authority    E92000001
#> 1696        2026         Week 18 Year to date  Local authority    E92000001
#> 1697        2026         Week 18 Year to date  Local authority    E92000001
#> 1698        2026         Week 18 Year to date  Local authority    E92000001
#> 1699        2026         Week 18 Year to date  Local authority    E92000001
#> 1700        2026         Week 18 Year to date  Local authority    E92000001
#> 1701        2026         Week 18 Year to date  Local authority    E92000001
#> 1702        2026         Week 18 Year to date  Local authority    E92000001
#> 1703        2026         Week 18 Year to date  Local authority    E92000001
#> 1704        2026         Week 18 Year to date  Local authority    E92000001
#> 1705        2026         Week 18 Year to date  Local authority    E92000001
#> 1706        2026         Week 18 Year to date  Local authority    E92000001
#> 1707        2026         Week 18 Year to date  Local authority    E92000001
#> 1708        2026         Week 18 Year to date  Local authority    E92000001
#> 1709        2026         Week 18 Year to date  Local authority    E92000001
#> 1710        2026         Week 18 Year to date  Local authority    E92000001
#> 1711        2026         Week 18 Year to date  Local authority    E92000001
#> 1712        2026         Week 18 Year to date  Local authority    E92000001
#> 1713        2026         Week 18 Year to date  Local authority    E92000001
#> 1714        2026         Week 18 Year to date  Local authority    E92000001
#> 1715        2026         Week 18 Year to date  Local authority    E92000001
#> 1716        2026         Week 18 Year to date  Local authority    E92000001
#> 1717        2026         Week 18 Year to date  Local authority    E92000001
#> 1718        2026         Week 18 Year to date  Local authority    E92000001
#> 1719        2026         Week 18 Year to date  Local authority    E92000001
#> 1720        2026         Week 18 Year to date  Local authority    E92000001
#> 1721        2026         Week 18 Year to date  Local authority    E92000001
#> 1722        2026         Week 18 Year to date  Local authority    E92000001
#> 1723        2026         Week 18 Year to date  Local authority    E92000001
#> 1724        2026         Week 18 Year to date  Local authority    E92000001
#> 1725        2026         Week 18 Year to date  Local authority    E92000001
#> 1726        2026         Week 18 Year to date  Local authority    E92000001
#> 1727        2026         Week 18 Year to date  Local authority    E92000001
#> 1728        2026         Week 18 Year to date  Local authority    E92000001
#> 1729        2026         Week 18 Year to date  Local authority    E92000001
#> 1730        2026         Week 18 Year to date  Local authority    E92000001
#> 1731        2026         Week 18 Year to date  Local authority    E92000001
#> 1732        2026         Week 18 Year to date  Local authority    E92000001
#> 1733        2026         Week 18 Year to date  Local authority    E92000001
#> 1734        2026         Week 18 Year to date  Local authority    E92000001
#> 1735        2026         Week 18 Year to date  Local authority    E92000001
#> 1736        2026         Week 18 Year to date  Local authority    E92000001
#> 1737        2026         Week 18 Year to date  Local authority    E92000001
#> 1738        2026         Week 18 Year to date  Local authority    E92000001
#> 1739        2026         Week 18 Year to date  Local authority    E92000001
#> 1740        2026         Week 18 Year to date  Local authority    E92000001
#> 1741        2026         Week 18 Year to date  Local authority    E92000001
#> 1742        2026         Week 18 Year to date  Local authority    E92000001
#> 1743        2026         Week 18 Year to date  Local authority    E92000001
#> 1744        2026         Week 18 Year to date  Local authority    E92000001
#> 1745        2026         Week 18 Year to date  Local authority    E92000001
#> 1746        2026         Week 18 Year to date  Local authority    E92000001
#> 1747        2026         Week 18 Year to date  Local authority    E92000001
#> 1748        2026         Week 18 Year to date  Local authority    E92000001
#> 1749        2026         Week 18 Year to date  Local authority    E92000001
#> 1750        2026         Week 18 Year to date  Local authority    E92000001
#> 1751        2026         Week 18 Year to date  Local authority    E92000001
#> 1752        2026         Week 18 Year to date  Local authority    E92000001
#> 1753        2026         Week 18 Year to date  Local authority    E92000001
#> 1754        2026         Week 18 Year to date  Local authority    E92000001
#> 1755        2026         Week 18 Year to date  Local authority    E92000001
#> 1756        2026         Week 18 Year to date  Local authority    E92000001
#> 1757        2026         Week 18 Year to date  Local authority    E92000001
#> 1758        2026         Week 18 Year to date  Local authority    E92000001
#> 1759        2026         Week 18 Year to date  Local authority    E92000001
#> 1760        2026         Week 18 Year to date  Local authority    E92000001
#> 1761        2026         Week 18 Year to date  Local authority    E92000001
#> 1762        2026         Week 18 Year to date  Local authority    E92000001
#> 1763        2026         Week 18 Year to date  Local authority    E92000001
#> 1764        2026         Week 18 Year to date  Local authority    E92000001
#> 1765        2026         Week 18 Year to date  Local authority    E92000001
#> 1766        2026         Week 18 Year to date  Local authority    E92000001
#> 1767        2026         Week 18 Year to date  Local authority    E92000001
#> 1768        2026         Week 18 Year to date  Local authority    E92000001
#> 1769        2026         Week 18 Year to date  Local authority    E92000001
#> 1770        2026         Week 18 Year to date  Local authority    E92000001
#> 1771        2026         Week 18 Year to date  Local authority    E92000001
#> 1772        2026         Week 18 Year to date  Local authority    E92000001
#> 1773        2026         Week 18 Year to date  Local authority    E92000001
#> 1774        2026         Week 18 Year to date  Local authority    E92000001
#> 1775        2026         Week 18 Year to date  Local authority    E92000001
#> 1776        2026         Week 18 Year to date  Local authority    E92000001
#> 1777        2026         Week 18 Year to date  Local authority    E92000001
#> 1778        2026         Week 18 Year to date  Local authority    E92000001
#> 1779        2026         Week 18 Year to date  Local authority    E92000001
#> 1780        2026         Week 18 Year to date  Local authority    E92000001
#> 1781        2026         Week 18 Year to date  Local authority    E92000001
#> 1782        2026         Week 18 Year to date  Local authority    E92000001
#> 1783        2026         Week 18 Year to date  Local authority    E92000001
#> 1784        2026         Week 18 Year to date  Local authority    E92000001
#> 1785        2026         Week 18 Year to date  Local authority    E92000001
#> 1786        2026         Week 18 Year to date  Local authority    E92000001
#> 1787        2026         Week 18 Year to date  Local authority    E92000001
#> 1788        2026         Week 18 Year to date  Local authority    E92000001
#> 1789        2026         Week 18 Year to date  Local authority    E92000001
#> 1790        2026         Week 18 Year to date  Local authority    E92000001
#> 1791        2026         Week 18 Year to date  Local authority    E92000001
#> 1792        2026         Week 18 Year to date  Local authority    E92000001
#> 1793        2026         Week 18 Year to date  Local authority    E92000001
#> 1794        2026         Week 18 Year to date  Local authority    E92000001
#> 1795        2026         Week 18 Year to date  Local authority    E92000001
#> 1796        2026         Week 18 Year to date  Local authority    E92000001
#> 1797        2026         Week 18 Year to date  Local authority    E92000001
#> 1798        2026         Week 18 Year to date  Local authority    E92000001
#> 1799        2026         Week 18 Year to date  Local authority    E92000001
#> 1800        2026         Week 18 Year to date         Regional    E92000001
#> 1801        2026         Week 18 Year to date         Regional    E92000001
#> 1802        2026         Week 18 Year to date         Regional    E92000001
#> 1803        2026         Week 18 Year to date         Regional    E92000001
#> 1804        2026         Week 18 Year to date  Local authority    E92000001
#> 1805        2026         Week 18 Year to date  Local authority    E92000001
#> 1806        2026         Week 18 Year to date  Local authority    E92000001
#> 1807        2026         Week 18 Year to date  Local authority    E92000001
#> 1808        2026         Week 18 Year to date  Local authority    E92000001
#> 1809        2026         Week 18 Year to date  Local authority    E92000001
#> 1810        2026         Week 18 Year to date  Local authority    E92000001
#> 1811        2026         Week 18 Year to date  Local authority    E92000001
#> 1812        2026         Week 18 Year to date  Local authority    E92000001
#> 1813        2026         Week 18 Year to date  Local authority    E92000001
#> 1814        2026         Week 18 Year to date  Local authority    E92000001
#> 1815        2026         Week 18 Year to date  Local authority    E92000001
#> 1816        2026         Week 18 Year to date  Local authority    E92000001
#> 1817        2026         Week 18 Year to date  Local authority    E92000001
#> 1818        2026         Week 18 Year to date  Local authority    E92000001
#> 1819        2026         Week 18 Year to date  Local authority    E92000001
#> 1820        2026         Week 18 Year to date  Local authority    E92000001
#> 1821        2026         Week 18 Year to date  Local authority    E92000001
#> 1822        2026         Week 18 Year to date  Local authority    E92000001
#> 1823        2026         Week 18 Year to date  Local authority    E92000001
#> 1824        2026         Week 18 Year to date  Local authority    E92000001
#> 1825        2026         Week 18 Year to date  Local authority    E92000001
#> 1826        2026         Week 18 Year to date  Local authority    E92000001
#> 1827        2026         Week 18 Year to date  Local authority    E92000001
#> 1828        2026         Week 18 Year to date  Local authority    E92000001
#> 1829        2026         Week 18 Year to date  Local authority    E92000001
#> 1830        2026         Week 18 Year to date  Local authority    E92000001
#> 1831        2026         Week 18 Year to date  Local authority    E92000001
#> 1832        2026         Week 18 Year to date  Local authority    E92000001
#> 1833        2026         Week 18 Year to date  Local authority    E92000001
#> 1834        2026         Week 18 Year to date  Local authority    E92000001
#> 1835        2026         Week 18 Year to date  Local authority    E92000001
#> 1836        2026         Week 18 Year to date  Local authority    E92000001
#> 1837        2026         Week 18 Year to date  Local authority    E92000001
#> 1838        2026         Week 18 Year to date  Local authority    E92000001
#> 1839        2026         Week 18 Year to date  Local authority    E92000001
#> 1840        2026         Week 18 Year to date  Local authority    E92000001
#> 1841        2026         Week 18 Year to date  Local authority    E92000001
#> 1842        2026         Week 18 Year to date  Local authority    E92000001
#> 1843        2026         Week 18 Year to date  Local authority    E92000001
#> 1844        2026         Week 18 Year to date  Local authority    E92000001
#> 1845        2026         Week 18 Year to date  Local authority    E92000001
#> 1846        2026         Week 18 Year to date  Local authority    E92000001
#> 1847        2026         Week 18 Year to date  Local authority    E92000001
#> 1848        2026         Week 18 Year to date  Local authority    E92000001
#> 1849        2026         Week 18 Year to date  Local authority    E92000001
#> 1850        2026         Week 18 Year to date  Local authority    E92000001
#> 1851        2026         Week 18 Year to date  Local authority    E92000001
#> 1852        2026         Week 18 Year to date  Local authority    E92000001
#> 1853        2026         Week 18 Year to date  Local authority    E92000001
#> 1854        2026         Week 18 Year to date  Local authority    E92000001
#> 1855        2026         Week 18 Year to date  Local authority    E92000001
#> 1856        2026         Week 18 Year to date  Local authority    E92000001
#> 1857        2026         Week 18 Year to date  Local authority    E92000001
#> 1858        2026         Week 18 Year to date  Local authority    E92000001
#> 1859        2026         Week 18 Year to date  Local authority    E92000001
#> 1860        2026         Week 18 Year to date  Local authority    E92000001
#> 1861        2026         Week 18 Year to date  Local authority    E92000001
#> 1862        2026         Week 18 Year to date  Local authority    E92000001
#> 1863        2026         Week 18 Year to date  Local authority    E92000001
#> 1864        2026         Week 18 Year to date  Local authority    E92000001
#> 1865        2026         Week 18 Year to date  Local authority    E92000001
#> 1866        2026         Week 18 Year to date  Local authority    E92000001
#> 1867        2026         Week 18 Year to date  Local authority    E92000001
#> 1868        2026         Week 18 Year to date  Local authority    E92000001
#> 1869        2026         Week 18 Year to date  Local authority    E92000001
#> 1870        2026         Week 18 Year to date  Local authority    E92000001
#> 1871        2026         Week 18 Year to date  Local authority    E92000001
#> 1872        2026         Week 18 Year to date  Local authority    E92000001
#> 1873        2026         Week 18 Year to date  Local authority    E92000001
#> 1874        2026         Week 18 Year to date  Local authority    E92000001
#> 1875        2026         Week 18 Year to date  Local authority    E92000001
#> 1876        2026         Week 18 Year to date  Local authority    E92000001
#> 1877        2026         Week 18 Year to date  Local authority    E92000001
#> 1878        2026         Week 18 Year to date  Local authority    E92000001
#> 1879        2026         Week 18 Year to date  Local authority    E92000001
#> 1880        2026         Week 18 Year to date         Regional    E92000001
#> 1881        2026         Week 18 Year to date         Regional    E92000001
#> 1882        2026         Week 18 Year to date         Regional    E92000001
#> 1883        2026         Week 18 Year to date         Regional    E92000001
#> 1884        2026         Week 18 Year to date  Local authority    E92000001
#> 1885        2026         Week 18 Year to date  Local authority    E92000001
#> 1886        2026         Week 18 Year to date  Local authority    E92000001
#> 1887        2026         Week 18 Year to date  Local authority    E92000001
#> 1888        2026         Week 18 Year to date  Local authority    E92000001
#> 1889        2026         Week 18 Year to date  Local authority    E92000001
#> 1890        2026         Week 18 Year to date  Local authority    E92000001
#> 1891        2026         Week 18 Year to date  Local authority    E92000001
#> 1892        2026         Week 18 Year to date  Local authority    E92000001
#> 1893        2026         Week 18 Year to date  Local authority    E92000001
#> 1894        2026         Week 18 Year to date  Local authority    E92000001
#> 1895        2026         Week 18 Year to date  Local authority    E92000001
#> 1896        2026         Week 18 Year to date  Local authority    E92000001
#> 1897        2026         Week 18 Year to date  Local authority    E92000001
#> 1898        2026         Week 18 Year to date  Local authority    E92000001
#> 1899        2026         Week 18 Year to date  Local authority    E92000001
#> 1900        2026         Week 18 Year to date  Local authority    E92000001
#> 1901        2026         Week 18 Year to date  Local authority    E92000001
#> 1902        2026         Week 18 Year to date  Local authority    E92000001
#> 1903        2026         Week 18 Year to date  Local authority    E92000001
#> 1904        2026         Week 18 Year to date  Local authority    E92000001
#> 1905        2026         Week 18 Year to date  Local authority    E92000001
#> 1906        2026         Week 18 Year to date  Local authority    E92000001
#> 1907        2026         Week 18 Year to date  Local authority    E92000001
#> 1908        2026         Week 18 Year to date  Local authority    E92000001
#> 1909        2026         Week 18 Year to date  Local authority    E92000001
#> 1910        2026         Week 18 Year to date  Local authority    E92000001
#> 1911        2026         Week 18 Year to date  Local authority    E92000001
#> 1912        2026         Week 18 Year to date  Local authority    E92000001
#> 1913        2026         Week 18 Year to date  Local authority    E92000001
#> 1914        2026         Week 18 Year to date  Local authority    E92000001
#> 1915        2026         Week 18 Year to date  Local authority    E92000001
#> 1916        2026         Week 18 Year to date  Local authority    E92000001
#> 1917        2026         Week 18 Year to date  Local authority    E92000001
#> 1918        2026         Week 18 Year to date  Local authority    E92000001
#> 1919        2026         Week 18 Year to date  Local authority    E92000001
#> 1920        2026         Week 18 Year to date  Local authority    E92000001
#> 1921        2026         Week 18 Year to date  Local authority    E92000001
#> 1922        2026         Week 18 Year to date  Local authority    E92000001
#> 1923        2026         Week 18 Year to date  Local authority    E92000001
#> 1924        2026         Week 18 Year to date  Local authority    E92000001
#> 1925        2026         Week 18 Year to date  Local authority    E92000001
#> 1926        2026         Week 18 Year to date  Local authority    E92000001
#> 1927        2026         Week 18 Year to date  Local authority    E92000001
#> 1928        2026         Week 18 Year to date  Local authority    E92000001
#> 1929        2026         Week 18 Year to date  Local authority    E92000001
#> 1930        2026         Week 18 Year to date  Local authority    E92000001
#> 1931        2026         Week 18 Year to date  Local authority    E92000001
#> 1932        2026         Week 18 Year to date  Local authority    E92000001
#> 1933        2026         Week 18 Year to date  Local authority    E92000001
#> 1934        2026         Week 18 Year to date  Local authority    E92000001
#> 1935        2026         Week 18 Year to date  Local authority    E92000001
#> 1936        2026         Week 18 Year to date  Local authority    E92000001
#> 1937        2026         Week 18 Year to date  Local authority    E92000001
#> 1938        2026         Week 18 Year to date  Local authority    E92000001
#> 1939        2026         Week 18 Year to date  Local authority    E92000001
#> 1940        2026         Week 18 Year to date  Local authority    E92000001
#> 1941        2026         Week 18 Year to date  Local authority    E92000001
#> 1942        2026         Week 16 Year to date         National    E92000001
#> 1943        2026         Week 16 Year to date         National    E92000001
#> 1944        2026         Week 16 Year to date         National    E92000001
#> 1945        2026         Week 16 Year to date         National    E92000001
#> 1946        2026         Week 16 Year to date         Regional    E92000001
#> 1947        2026         Week 16 Year to date         Regional    E92000001
#> 1948        2026         Week 16 Year to date         Regional    E92000001
#> 1949        2026         Week 16 Year to date         Regional    E92000001
#> 1950        2026         Week 16 Year to date  Local authority    E92000001
#> 1951        2026         Week 16 Year to date  Local authority    E92000001
#> 1952        2026         Week 16 Year to date  Local authority    E92000001
#> 1953        2026         Week 16 Year to date  Local authority    E92000001
#> 1954        2026         Week 16 Year to date  Local authority    E92000001
#> 1955        2026         Week 16 Year to date  Local authority    E92000001
#> 1956        2026         Week 16 Year to date  Local authority    E92000001
#> 1957        2026         Week 16 Year to date  Local authority    E92000001
#> 1958        2026         Week 16 Year to date  Local authority    E92000001
#> 1959        2026         Week 16 Year to date  Local authority    E92000001
#> 1960        2026         Week 16 Year to date  Local authority    E92000001
#> 1961        2026         Week 16 Year to date  Local authority    E92000001
#> 1962        2026         Week 16 Year to date  Local authority    E92000001
#> 1963        2026         Week 16 Year to date  Local authority    E92000001
#> 1964        2026         Week 16 Year to date  Local authority    E92000001
#> 1965        2026         Week 16 Year to date  Local authority    E92000001
#> 1966        2026         Week 16 Year to date  Local authority    E92000001
#> 1967        2026         Week 16 Year to date  Local authority    E92000001
#> 1968        2026         Week 16 Year to date  Local authority    E92000001
#> 1969        2026         Week 16 Year to date  Local authority    E92000001
#> 1970        2026         Week 16 Year to date  Local authority    E92000001
#> 1971        2026         Week 16 Year to date  Local authority    E92000001
#> 1972        2026         Week 16 Year to date  Local authority    E92000001
#> 1973        2026         Week 16 Year to date  Local authority    E92000001
#> 1974        2026         Week 16 Year to date  Local authority    E92000001
#> 1975        2026         Week 16 Year to date  Local authority    E92000001
#> 1976        2026         Week 16 Year to date  Local authority    E92000001
#> 1977        2026         Week 16 Year to date  Local authority    E92000001
#> 1978        2026         Week 16 Year to date  Local authority    E92000001
#> 1979        2026         Week 16 Year to date  Local authority    E92000001
#> 1980        2026         Week 16 Year to date  Local authority    E92000001
#> 1981        2026         Week 16 Year to date  Local authority    E92000001
#> 1982        2026         Week 16 Year to date  Local authority    E92000001
#> 1983        2026         Week 16 Year to date  Local authority    E92000001
#> 1984        2026         Week 16 Year to date  Local authority    E92000001
#> 1985        2026         Week 16 Year to date  Local authority    E92000001
#> 1986        2026         Week 16 Year to date  Local authority    E92000001
#> 1987        2026         Week 16 Year to date  Local authority    E92000001
#> 1988        2026         Week 16 Year to date  Local authority    E92000001
#> 1989        2026         Week 16 Year to date  Local authority    E92000001
#> 1990        2026         Week 16 Year to date  Local authority    E92000001
#> 1991        2026         Week 16 Year to date  Local authority    E92000001
#> 1992        2026         Week 16 Year to date  Local authority    E92000001
#> 1993        2026         Week 16 Year to date  Local authority    E92000001
#> 1994        2026         Week 16 Year to date  Local authority    E92000001
#> 1995        2026         Week 16 Year to date  Local authority    E92000001
#> 1996        2026         Week 16 Year to date  Local authority    E92000001
#> 1997        2026         Week 16 Year to date  Local authority    E92000001
#> 1998        2026         Week 16 Year to date         Regional    E92000001
#> 1999        2026         Week 16 Year to date         Regional    E92000001
#> 2000        2026         Week 16 Year to date         Regional    E92000001
#> 2001        2026         Week 16 Year to date         Regional    E92000001
#> 2002        2026         Week 16 Year to date  Local authority    E92000001
#> 2003        2026         Week 16 Year to date  Local authority    E92000001
#> 2004        2026         Week 16 Year to date  Local authority    E92000001
#> 2005        2026         Week 16 Year to date  Local authority    E92000001
#> 2006        2026         Week 16 Year to date  Local authority    E92000001
#> 2007        2026         Week 16 Year to date  Local authority    E92000001
#> 2008        2026         Week 16 Year to date  Local authority    E92000001
#> 2009        2026         Week 16 Year to date  Local authority    E92000001
#> 2010        2026         Week 16 Year to date  Local authority    E92000001
#> 2011        2026         Week 16 Year to date  Local authority    E92000001
#> 2012        2026         Week 16 Year to date  Local authority    E92000001
#> 2013        2026         Week 16 Year to date  Local authority    E92000001
#> 2014        2026         Week 16 Year to date  Local authority    E92000001
#> 2015        2026         Week 16 Year to date  Local authority    E92000001
#> 2016        2026         Week 16 Year to date  Local authority    E92000001
#> 2017        2026         Week 16 Year to date  Local authority    E92000001
#> 2018        2026         Week 16 Year to date  Local authority    E92000001
#> 2019        2026         Week 16 Year to date  Local authority    E92000001
#> 2020        2026         Week 16 Year to date  Local authority    E92000001
#> 2021        2026         Week 16 Year to date  Local authority    E92000001
#> 2022        2026         Week 16 Year to date  Local authority    E92000001
#> 2023        2026         Week 16 Year to date  Local authority    E92000001
#> 2024        2026         Week 16 Year to date  Local authority    E92000001
#> 2025        2026         Week 16 Year to date  Local authority    E92000001
#> 2026        2026         Week 16 Year to date  Local authority    E92000001
#> 2027        2026         Week 16 Year to date  Local authority    E92000001
#> 2028        2026         Week 16 Year to date  Local authority    E92000001
#> 2029        2026         Week 16 Year to date  Local authority    E92000001
#> 2030        2026         Week 16 Year to date  Local authority    E92000001
#> 2031        2026         Week 16 Year to date  Local authority    E92000001
#> 2032        2026         Week 16 Year to date  Local authority    E92000001
#> 2033        2026         Week 16 Year to date  Local authority    E92000001
#> 2034        2026         Week 16 Year to date  Local authority    E92000001
#> 2035        2026         Week 16 Year to date  Local authority    E92000001
#> 2036        2026         Week 16 Year to date  Local authority    E92000001
#> 2037        2026         Week 16 Year to date  Local authority    E92000001
#> 2038        2026         Week 16 Year to date  Local authority    E92000001
#> 2039        2026         Week 16 Year to date  Local authority    E92000001
#> 2040        2026         Week 16 Year to date  Local authority    E92000001
#> 2041        2026         Week 16 Year to date  Local authority    E92000001
#> 2042        2026         Week 16 Year to date  Local authority    E92000001
#> 2043        2026         Week 16 Year to date  Local authority    E92000001
#> 2044        2026         Week 16 Year to date  Local authority    E92000001
#> 2045        2026         Week 16 Year to date  Local authority    E92000001
#> 2046        2026         Week 16 Year to date  Local authority    E92000001
#> 2047        2026         Week 16 Year to date  Local authority    E92000001
#> 2048        2026         Week 16 Year to date  Local authority    E92000001
#> 2049        2026         Week 16 Year to date  Local authority    E92000001
#> 2050        2026         Week 16 Year to date  Local authority    E92000001
#> 2051        2026         Week 16 Year to date  Local authority    E92000001
#> 2052        2026         Week 16 Year to date  Local authority    E92000001
#> 2053        2026         Week 16 Year to date  Local authority    E92000001
#> 2054        2026         Week 16 Year to date  Local authority    E92000001
#> 2055        2026         Week 16 Year to date  Local authority    E92000001
#> 2056        2026         Week 16 Year to date  Local authority    E92000001
#> 2057        2026         Week 16 Year to date  Local authority    E92000001
#> 2058        2026         Week 16 Year to date  Local authority    E92000001
#> 2059        2026         Week 16 Year to date  Local authority    E92000001
#> 2060        2026         Week 16 Year to date  Local authority    E92000001
#> 2061        2026         Week 16 Year to date  Local authority    E92000001
#> 2062        2026         Week 16 Year to date  Local authority    E92000001
#> 2063        2026         Week 16 Year to date  Local authority    E92000001
#> 2064        2026         Week 16 Year to date  Local authority    E92000001
#> 2065        2026         Week 16 Year to date  Local authority    E92000001
#> 2066        2026         Week 16 Year to date  Local authority    E92000001
#> 2067        2026         Week 16 Year to date  Local authority    E92000001
#> 2068        2026         Week 16 Year to date  Local authority    E92000001
#> 2069        2026         Week 16 Year to date  Local authority    E92000001
#> 2070        2026         Week 16 Year to date  Local authority    E92000001
#> 2071        2026         Week 16 Year to date  Local authority    E92000001
#> 2072        2026         Week 16 Year to date  Local authority    E92000001
#> 2073        2026         Week 16 Year to date  Local authority    E92000001
#> 2074        2026         Week 16 Year to date  Local authority    E92000001
#> 2075        2026         Week 16 Year to date  Local authority    E92000001
#> 2076        2026         Week 16 Year to date  Local authority    E92000001
#> 2077        2026         Week 16 Year to date  Local authority    E92000001
#> 2078        2026         Week 16 Year to date  Local authority    E92000001
#> 2079        2026         Week 16 Year to date  Local authority    E92000001
#> 2080        2026         Week 16 Year to date  Local authority    E92000001
#> 2081        2026         Week 16 Year to date  Local authority    E92000001
#> 2082        2026         Week 16 Year to date  Local authority    E92000001
#> 2083        2026         Week 16 Year to date  Local authority    E92000001
#> 2084        2026         Week 16 Year to date  Local authority    E92000001
#> 2085        2026         Week 16 Year to date  Local authority    E92000001
#> 2086        2026         Week 16 Year to date  Local authority    E92000001
#> 2087        2026         Week 16 Year to date  Local authority    E92000001
#> 2088        2026         Week 16 Year to date  Local authority    E92000001
#> 2089        2026         Week 16 Year to date  Local authority    E92000001
#> 2090        2026         Week 16 Year to date  Local authority    E92000001
#> 2091        2026         Week 16 Year to date  Local authority    E92000001
#> 2092        2026         Week 16 Year to date  Local authority    E92000001
#> 2093        2026         Week 16 Year to date  Local authority    E92000001
#> 2094        2026         Week 16 Year to date  Local authority    E92000001
#> 2095        2026         Week 16 Year to date  Local authority    E92000001
#> 2096        2026         Week 16 Year to date  Local authority    E92000001
#> 2097        2026         Week 16 Year to date  Local authority    E92000001
#> 2098        2026         Week 16 Year to date         Regional    E92000001
#> 2099        2026         Week 16 Year to date         Regional    E92000001
#> 2100        2026         Week 16 Year to date         Regional    E92000001
#> 2101        2026         Week 16 Year to date         Regional    E92000001
#> 2102        2026         Week 16 Year to date  Local authority    E92000001
#> 2103        2026         Week 16 Year to date  Local authority    E92000001
#> 2104        2026         Week 16 Year to date  Local authority    E92000001
#> 2105        2026         Week 16 Year to date  Local authority    E92000001
#> 2106        2026         Week 16 Year to date  Local authority    E92000001
#> 2107        2026         Week 16 Year to date  Local authority    E92000001
#> 2108        2026         Week 16 Year to date  Local authority    E92000001
#> 2109        2026         Week 16 Year to date  Local authority    E92000001
#> 2110        2026         Week 16 Year to date  Local authority    E92000001
#> 2111        2026         Week 16 Year to date  Local authority    E92000001
#> 2112        2026         Week 16 Year to date  Local authority    E92000001
#> 2113        2026         Week 16 Year to date  Local authority    E92000001
#> 2114        2026         Week 16 Year to date  Local authority    E92000001
#> 2115        2026         Week 16 Year to date  Local authority    E92000001
#> 2116        2026         Week 16 Year to date  Local authority    E92000001
#> 2117        2026         Week 16 Year to date  Local authority    E92000001
#> 2118        2026         Week 16 Year to date  Local authority    E92000001
#> 2119        2026         Week 16 Year to date  Local authority    E92000001
#> 2120        2026         Week 16 Year to date  Local authority    E92000001
#> 2121        2026         Week 16 Year to date  Local authority    E92000001
#> 2122        2026         Week 16 Year to date  Local authority    E92000001
#> 2123        2026         Week 16 Year to date  Local authority    E92000001
#> 2124        2026         Week 16 Year to date  Local authority    E92000001
#> 2125        2026         Week 16 Year to date  Local authority    E92000001
#> 2126        2026         Week 16 Year to date  Local authority    E92000001
#> 2127        2026         Week 16 Year to date  Local authority    E92000001
#> 2128        2026         Week 16 Year to date  Local authority    E92000001
#> 2129        2026         Week 16 Year to date  Local authority    E92000001
#> 2130        2026         Week 16 Year to date  Local authority    E92000001
#> 2131        2026         Week 16 Year to date  Local authority    E92000001
#> 2132        2026         Week 16 Year to date  Local authority    E92000001
#> 2133        2026         Week 16 Year to date  Local authority    E92000001
#> 2134        2026         Week 16 Year to date  Local authority    E92000001
#> 2135        2026         Week 16 Year to date  Local authority    E92000001
#> 2136        2026         Week 16 Year to date  Local authority    E92000001
#> 2137        2026         Week 16 Year to date  Local authority    E92000001
#> 2138        2026         Week 16 Year to date  Local authority    E92000001
#> 2139        2026         Week 16 Year to date  Local authority    E92000001
#> 2140        2026         Week 16 Year to date  Local authority    E92000001
#> 2141        2026         Week 16 Year to date  Local authority    E92000001
#> 2142        2026         Week 16 Year to date  Local authority    E92000001
#> 2143        2026         Week 16 Year to date  Local authority    E92000001
#> 2144        2026         Week 16 Year to date  Local authority    E92000001
#> 2145        2026         Week 16 Year to date  Local authority    E92000001
#> 2146        2026         Week 16 Year to date  Local authority    E92000001
#> 2147        2026         Week 16 Year to date  Local authority    E92000001
#> 2148        2026         Week 16 Year to date  Local authority    E92000001
#> 2149        2026         Week 16 Year to date  Local authority    E92000001
#> 2150        2026         Week 16 Year to date  Local authority    E92000001
#> 2151        2026         Week 16 Year to date  Local authority    E92000001
#> 2152        2026         Week 16 Year to date  Local authority    E92000001
#> 2153        2026         Week 16 Year to date  Local authority    E92000001
#> 2154        2026         Week 16 Year to date  Local authority    E92000001
#> 2155        2026         Week 16 Year to date  Local authority    E92000001
#> 2156        2026         Week 16 Year to date  Local authority    E92000001
#> 2157        2026         Week 16 Year to date  Local authority    E92000001
#> 2158        2026         Week 16 Year to date  Local authority    E92000001
#> 2159        2026         Week 16 Year to date  Local authority    E92000001
#> 2160        2026         Week 16 Year to date  Local authority    E92000001
#> 2161        2026         Week 16 Year to date  Local authority    E92000001
#> 2162        2026         Week 16 Year to date         Regional    E92000001
#> 2163        2026         Week 16 Year to date         Regional    E92000001
#> 2164        2026         Week 16 Year to date         Regional    E92000001
#> 2165        2026         Week 16 Year to date         Regional    E92000001
#> 2166        2026         Week 16 Year to date  Local authority    E92000001
#> 2167        2026         Week 16 Year to date  Local authority    E92000001
#> 2168        2026         Week 16 Year to date  Local authority    E92000001
#> 2169        2026         Week 16 Year to date  Local authority    E92000001
#> 2170        2026         Week 16 Year to date  Local authority    E92000001
#> 2171        2026         Week 16 Year to date  Local authority    E92000001
#> 2172        2026         Week 16 Year to date  Local authority    E92000001
#> 2173        2026         Week 16 Year to date  Local authority    E92000001
#> 2174        2026         Week 16 Year to date  Local authority    E92000001
#> 2175        2026         Week 16 Year to date  Local authority    E92000001
#> 2176        2026         Week 16 Year to date  Local authority    E92000001
#> 2177        2026         Week 16 Year to date  Local authority    E92000001
#> 2178        2026         Week 16 Year to date  Local authority    E92000001
#> 2179        2026         Week 16 Year to date  Local authority    E92000001
#> 2180        2026         Week 16 Year to date  Local authority    E92000001
#> 2181        2026         Week 16 Year to date  Local authority    E92000001
#> 2182        2026         Week 16 Year to date  Local authority    E92000001
#> 2183        2026         Week 16 Year to date  Local authority    E92000001
#> 2184        2026         Week 16 Year to date  Local authority    E92000001
#> 2185        2026         Week 16 Year to date  Local authority    E92000001
#> 2186        2026         Week 16 Year to date  Local authority    E92000001
#> 2187        2026         Week 16 Year to date  Local authority    E92000001
#> 2188        2026         Week 16 Year to date  Local authority    E92000001
#> 2189        2026         Week 16 Year to date  Local authority    E92000001
#> 2190        2026         Week 16 Year to date  Local authority    E92000001
#> 2191        2026         Week 16 Year to date  Local authority    E92000001
#> 2192        2026         Week 16 Year to date  Local authority    E92000001
#> 2193        2026         Week 16 Year to date  Local authority    E92000001
#> 2194        2026         Week 16 Year to date  Local authority    E92000001
#> 2195        2026         Week 16 Year to date  Local authority    E92000001
#> 2196        2026         Week 16 Year to date  Local authority    E92000001
#> 2197        2026         Week 16 Year to date  Local authority    E92000001
#> 2198        2026         Week 16 Year to date  Local authority    E92000001
#> 2199        2026         Week 16 Year to date  Local authority    E92000001
#> 2200        2026         Week 16 Year to date  Local authority    E92000001
#> 2201        2026         Week 16 Year to date  Local authority    E92000001
#> 2202        2026         Week 16 Year to date  Local authority    E92000001
#> 2203        2026         Week 16 Year to date  Local authority    E92000001
#> 2204        2026         Week 16 Year to date  Local authority    E92000001
#> 2205        2026         Week 16 Year to date         Regional    E92000001
#> 2206        2026         Week 16 Year to date         Regional    E92000001
#> 2207        2026         Week 16 Year to date         Regional    E92000001
#> 2208        2026         Week 16 Year to date         Regional    E92000001
#> 2209        2026         Week 16 Year to date  Local authority    E92000001
#> 2210        2026         Week 16 Year to date  Local authority    E92000001
#> 2211        2026         Week 16 Year to date  Local authority    E92000001
#> 2212        2026         Week 16 Year to date  Local authority    E92000001
#> 2213        2026         Week 16 Year to date  Local authority    E92000001
#> 2214        2026         Week 16 Year to date  Local authority    E92000001
#> 2215        2026         Week 16 Year to date  Local authority    E92000001
#> 2216        2026         Week 16 Year to date  Local authority    E92000001
#> 2217        2026         Week 16 Year to date  Local authority    E92000001
#> 2218        2026         Week 16 Year to date  Local authority    E92000001
#> 2219        2026         Week 16 Year to date  Local authority    E92000001
#> 2220        2026         Week 16 Year to date  Local authority    E92000001
#> 2221        2026         Week 16 Year to date  Local authority    E92000001
#> 2222        2026         Week 16 Year to date  Local authority    E92000001
#> 2223        2026         Week 16 Year to date  Local authority    E92000001
#> 2224        2026         Week 16 Year to date  Local authority    E92000001
#> 2225        2026         Week 16 Year to date  Local authority    E92000001
#> 2226        2026         Week 16 Year to date  Local authority    E92000001
#> 2227        2026         Week 16 Year to date  Local authority    E92000001
#> 2228        2026         Week 16 Year to date  Local authority    E92000001
#> 2229        2026         Week 16 Year to date  Local authority    E92000001
#> 2230        2026         Week 16 Year to date  Local authority    E92000001
#> 2231        2026         Week 16 Year to date  Local authority    E92000001
#> 2232        2026         Week 16 Year to date  Local authority    E92000001
#> 2233        2026         Week 16 Year to date  Local authority    E92000001
#> 2234        2026         Week 16 Year to date  Local authority    E92000001
#> 2235        2026         Week 16 Year to date  Local authority    E92000001
#> 2236        2026         Week 16 Year to date  Local authority    E92000001
#> 2237        2026         Week 16 Year to date  Local authority    E92000001
#> 2238        2026         Week 16 Year to date  Local authority    E92000001
#> 2239        2026         Week 16 Year to date  Local authority    E92000001
#> 2240        2026         Week 16 Year to date  Local authority    E92000001
#> 2241        2026         Week 16 Year to date  Local authority    E92000001
#> 2242        2026         Week 16 Year to date  Local authority    E92000001
#> 2243        2026         Week 16 Year to date  Local authority    E92000001
#> 2244        2026         Week 16 Year to date  Local authority    E92000001
#> 2245        2026         Week 16 Year to date  Local authority    E92000001
#> 2246        2026         Week 16 Year to date  Local authority    E92000001
#> 2247        2026         Week 16 Year to date  Local authority    E92000001
#> 2248        2026         Week 16 Year to date  Local authority    E92000001
#> 2249        2026         Week 16 Year to date  Local authority    E92000001
#> 2250        2026         Week 16 Year to date  Local authority    E92000001
#> 2251        2026         Week 16 Year to date  Local authority    E92000001
#> 2252        2026         Week 16 Year to date  Local authority    E92000001
#> 2253        2026         Week 16 Year to date  Local authority    E92000001
#> 2254        2026         Week 16 Year to date  Local authority    E92000001
#> 2255        2026         Week 16 Year to date  Local authority    E92000001
#> 2256        2026         Week 16 Year to date  Local authority    E92000001
#> 2257        2026         Week 16 Year to date  Local authority    E92000001
#> 2258        2026         Week 16 Year to date  Local authority    E92000001
#> 2259        2026         Week 16 Year to date  Local authority    E92000001
#> 2260        2026         Week 16 Year to date  Local authority    E92000001
#> 2261        2026         Week 16 Year to date  Local authority    E92000001
#> 2262        2026         Week 16 Year to date  Local authority    E92000001
#> 2263        2026         Week 16 Year to date  Local authority    E92000001
#> 2264        2026         Week 16 Year to date  Local authority    E92000001
#> 2265        2026         Week 16 Year to date         Regional    E92000001
#> 2266        2026         Week 16 Year to date         Regional    E92000001
#> 2267        2026         Week 16 Year to date         Regional    E92000001
#> 2268        2026         Week 16 Year to date         Regional    E92000001
#> 2269        2026         Week 16 Year to date  Local authority    E92000001
#> 2270        2026         Week 16 Year to date  Local authority    E92000001
#> 2271        2026         Week 16 Year to date  Local authority    E92000001
#> 2272        2026         Week 16 Year to date  Local authority    E92000001
#> 2273        2026         Week 16 Year to date  Local authority    E92000001
#> 2274        2026         Week 16 Year to date  Local authority    E92000001
#> 2275        2026         Week 16 Year to date  Local authority    E92000001
#> 2276        2026         Week 16 Year to date  Local authority    E92000001
#> 2277        2026         Week 16 Year to date  Local authority    E92000001
#> 2278        2026         Week 16 Year to date  Local authority    E92000001
#> 2279        2026         Week 16 Year to date  Local authority    E92000001
#> 2280        2026         Week 16 Year to date  Local authority    E92000001
#> 2281        2026         Week 16 Year to date  Local authority    E92000001
#> 2282        2026         Week 16 Year to date  Local authority    E92000001
#> 2283        2026         Week 16 Year to date  Local authority    E92000001
#> 2284        2026         Week 16 Year to date  Local authority    E92000001
#> 2285        2026         Week 16 Year to date  Local authority    E92000001
#> 2286        2026         Week 16 Year to date  Local authority    E92000001
#> 2287        2026         Week 16 Year to date  Local authority    E92000001
#> 2288        2026         Week 16 Year to date  Local authority    E92000001
#> 2289        2026         Week 16 Year to date  Local authority    E92000001
#> 2290        2026         Week 16 Year to date  Local authority    E92000001
#> 2291        2026         Week 16 Year to date  Local authority    E92000001
#> 2292        2026         Week 16 Year to date  Local authority    E92000001
#> 2293        2026         Week 16 Year to date  Local authority    E92000001
#> 2294        2026         Week 16 Year to date  Local authority    E92000001
#> 2295        2026         Week 16 Year to date  Local authority    E92000001
#> 2296        2026         Week 16 Year to date  Local authority    E92000001
#> 2297        2026         Week 16 Year to date  Local authority    E92000001
#> 2298        2026         Week 16 Year to date  Local authority    E92000001
#> 2299        2026         Week 16 Year to date  Local authority    E92000001
#> 2300        2026         Week 16 Year to date  Local authority    E92000001
#> 2301        2026         Week 16 Year to date  Local authority    E92000001
#> 2302        2026         Week 16 Year to date  Local authority    E92000001
#> 2303        2026         Week 16 Year to date  Local authority    E92000001
#> 2304        2026         Week 16 Year to date  Local authority    E92000001
#> 2305        2026         Week 16 Year to date  Local authority    E92000001
#> 2306        2026         Week 16 Year to date  Local authority    E92000001
#> 2307        2026         Week 16 Year to date  Local authority    E92000001
#> 2308        2026         Week 16 Year to date  Local authority    E92000001
#> 2309        2026         Week 16 Year to date  Local authority    E92000001
#> 2310        2026         Week 16 Year to date  Local authority    E92000001
#> 2311        2026         Week 16 Year to date  Local authority    E92000001
#> 2312        2026         Week 16 Year to date  Local authority    E92000001
#> 2313        2026         Week 16 Year to date         Regional    E92000001
#> 2314        2026         Week 16 Year to date         Regional    E92000001
#> 2315        2026         Week 16 Year to date         Regional    E92000001
#> 2316        2026         Week 16 Year to date         Regional    E92000001
#> 2317        2026         Week 16 Year to date  Local authority    E92000001
#> 2318        2026         Week 16 Year to date  Local authority    E92000001
#> 2319        2026         Week 16 Year to date  Local authority    E92000001
#> 2320        2026         Week 16 Year to date  Local authority    E92000001
#> 2321        2026         Week 16 Year to date  Local authority    E92000001
#> 2322        2026         Week 16 Year to date  Local authority    E92000001
#> 2323        2026         Week 16 Year to date  Local authority    E92000001
#> 2324        2026         Week 16 Year to date  Local authority    E92000001
#> 2325        2026         Week 16 Year to date  Local authority    E92000001
#> 2326        2026         Week 16 Year to date  Local authority    E92000001
#> 2327        2026         Week 16 Year to date  Local authority    E92000001
#> 2328        2026         Week 16 Year to date  Local authority    E92000001
#> 2329        2026         Week 16 Year to date  Local authority    E92000001
#> 2330        2026         Week 16 Year to date  Local authority    E92000001
#> 2331        2026         Week 16 Year to date  Local authority    E92000001
#> 2332        2026         Week 16 Year to date  Local authority    E92000001
#> 2333        2026         Week 16 Year to date  Local authority    E92000001
#> 2334        2026         Week 16 Year to date  Local authority    E92000001
#> 2335        2026         Week 16 Year to date  Local authority    E92000001
#> 2336        2026         Week 16 Year to date  Local authority    E92000001
#> 2337        2026         Week 16 Year to date  Local authority    E92000001
#> 2338        2026         Week 16 Year to date  Local authority    E92000001
#> 2339        2026         Week 16 Year to date  Local authority    E92000001
#> 2340        2026         Week 16 Year to date  Local authority    E92000001
#> 2341        2026         Week 16 Year to date  Local authority    E92000001
#> 2342        2026         Week 16 Year to date  Local authority    E92000001
#> 2343        2026         Week 16 Year to date  Local authority    E92000001
#> 2344        2026         Week 16 Year to date  Local authority    E92000001
#> 2345        2026         Week 16 Year to date  Local authority    E92000001
#> 2346        2026         Week 16 Year to date  Local authority    E92000001
#> 2347        2026         Week 16 Year to date  Local authority    E92000001
#> 2348        2026         Week 16 Year to date  Local authority    E92000001
#> 2349        2026         Week 16 Year to date  Local authority    E92000001
#> 2350        2026         Week 16 Year to date  Local authority    E92000001
#> 2351        2026         Week 16 Year to date  Local authority    E92000001
#> 2352        2026         Week 16 Year to date  Local authority    E92000001
#> 2353        2026         Week 16 Year to date  Local authority    E92000001
#> 2354        2026         Week 16 Year to date  Local authority    E92000001
#> 2355        2026         Week 16 Year to date  Local authority    E92000001
#> 2356        2026         Week 16 Year to date  Local authority    E92000001
#> 2357        2026         Week 16 Year to date  Local authority    E92000001
#> 2358        2026         Week 16 Year to date  Local authority    E92000001
#> 2359        2026         Week 16 Year to date  Local authority    E92000001
#> 2360        2026         Week 16 Year to date  Local authority    E92000001
#> 2361        2026         Week 16 Year to date  Local authority    E92000001
#> 2362        2026         Week 16 Year to date  Local authority    E92000001
#> 2363        2026         Week 16 Year to date  Local authority    E92000001
#> 2364        2026         Week 16 Year to date  Local authority    E92000001
#> 2365        2026         Week 16 Year to date  Local authority    E92000001
#> 2366        2026         Week 16 Year to date  Local authority    E92000001
#> 2367        2026         Week 16 Year to date  Local authority    E92000001
#> 2368        2026         Week 16 Year to date  Local authority    E92000001
#> 2369        2026         Week 16 Year to date  Local authority    E92000001
#> 2370        2026         Week 16 Year to date  Local authority    E92000001
#> 2371        2026         Week 16 Year to date  Local authority    E92000001
#> 2372        2026         Week 16 Year to date  Local authority    E92000001
#> 2373        2026         Week 16 Year to date  Local authority    E92000001
#> 2374        2026         Week 16 Year to date  Local authority    E92000001
#> 2375        2026         Week 16 Year to date  Local authority    E92000001
#> 2376        2026         Week 16 Year to date  Local authority    E92000001
#> 2377        2026         Week 16 Year to date  Local authority    E92000001
#> 2378        2026         Week 16 Year to date  Local authority    E92000001
#> 2379        2026         Week 16 Year to date  Local authority    E92000001
#> 2380        2026         Week 16 Year to date  Local authority    E92000001
#> 2381        2026         Week 16 Year to date  Local authority    E92000001
#> 2382        2026         Week 16 Year to date  Local authority    E92000001
#> 2383        2026         Week 16 Year to date  Local authority    E92000001
#> 2384        2026         Week 16 Year to date  Local authority    E92000001
#> 2385        2026         Week 16 Year to date  Local authority    E92000001
#> 2386        2026         Week 16 Year to date  Local authority    E92000001
#> 2387        2026         Week 16 Year to date  Local authority    E92000001
#> 2388        2026         Week 16 Year to date  Local authority    E92000001
#> 2389        2026         Week 16 Year to date  Local authority    E92000001
#> 2390        2026         Week 16 Year to date  Local authority    E92000001
#> 2391        2026         Week 16 Year to date  Local authority    E92000001
#> 2392        2026         Week 16 Year to date  Local authority    E92000001
#> 2393        2026         Week 16 Year to date  Local authority    E92000001
#> 2394        2026         Week 16 Year to date  Local authority    E92000001
#> 2395        2026         Week 16 Year to date  Local authority    E92000001
#> 2396        2026         Week 16 Year to date  Local authority    E92000001
#> 2397        2026         Week 16 Year to date  Local authority    E92000001
#> 2398        2026         Week 16 Year to date  Local authority    E92000001
#> 2399        2026         Week 16 Year to date  Local authority    E92000001
#> 2400        2026         Week 16 Year to date  Local authority    E92000001
#> 2401        2026         Week 16 Year to date  Local authority    E92000001
#> 2402        2026         Week 16 Year to date  Local authority    E92000001
#> 2403        2026         Week 16 Year to date  Local authority    E92000001
#> 2404        2026         Week 16 Year to date  Local authority    E92000001
#> 2405        2026         Week 16 Year to date  Local authority    E92000001
#> 2406        2026         Week 16 Year to date  Local authority    E92000001
#> 2407        2026         Week 16 Year to date  Local authority    E92000001
#> 2408        2026         Week 16 Year to date  Local authority    E92000001
#> 2409        2026         Week 16 Year to date  Local authority    E92000001
#> 2410        2026         Week 16 Year to date  Local authority    E92000001
#> 2411        2026         Week 16 Year to date  Local authority    E92000001
#> 2412        2026         Week 16 Year to date  Local authority    E92000001
#> 2413        2026         Week 16 Year to date  Local authority    E92000001
#> 2414        2026         Week 16 Year to date  Local authority    E92000001
#> 2415        2026         Week 16 Year to date  Local authority    E92000001
#> 2416        2026         Week 16 Year to date  Local authority    E92000001
#> 2417        2026         Week 16 Year to date  Local authority    E92000001
#> 2418        2026         Week 16 Year to date  Local authority    E92000001
#> 2419        2026         Week 16 Year to date  Local authority    E92000001
#> 2420        2026         Week 16 Year to date  Local authority    E92000001
#> 2421        2026         Week 16 Year to date  Local authority    E92000001
#> 2422        2026         Week 16 Year to date  Local authority    E92000001
#> 2423        2026         Week 16 Year to date  Local authority    E92000001
#> 2424        2026         Week 16 Year to date  Local authority    E92000001
#> 2425        2026         Week 16 Year to date  Local authority    E92000001
#> 2426        2026         Week 16 Year to date  Local authority    E92000001
#> 2427        2026         Week 16 Year to date  Local authority    E92000001
#> 2428        2026         Week 16 Year to date  Local authority    E92000001
#> 2429        2026         Week 16 Year to date  Local authority    E92000001
#> 2430        2026         Week 16 Year to date  Local authority    E92000001
#> 2431        2026         Week 16 Year to date  Local authority    E92000001
#> 2432        2026         Week 16 Year to date  Local authority    E92000001
#> 2433        2026         Week 16 Year to date  Local authority    E92000001
#> 2434        2026         Week 16 Year to date  Local authority    E92000001
#> 2435        2026         Week 16 Year to date  Local authority    E92000001
#> 2436        2026         Week 16 Year to date  Local authority    E92000001
#> 2437        2026         Week 16 Year to date  Local authority    E92000001
#> 2438        2026         Week 16 Year to date  Local authority    E92000001
#> 2439        2026         Week 16 Year to date  Local authority    E92000001
#> 2440        2026         Week 16 Year to date  Local authority    E92000001
#> 2441        2026         Week 16 Year to date  Local authority    E92000001
#> 2442        2026         Week 16 Year to date  Local authority    E92000001
#> 2443        2026         Week 16 Year to date  Local authority    E92000001
#> 2444        2026         Week 16 Year to date  Local authority    E92000001
#> 2445        2026         Week 16 Year to date  Local authority    E92000001
#> 2446        2026         Week 16 Year to date  Local authority    E92000001
#> 2447        2026         Week 16 Year to date         Regional    E92000001
#> 2448        2026         Week 16 Year to date         Regional    E92000001
#> 2449        2026         Week 16 Year to date         Regional    E92000001
#> 2450        2026         Week 16 Year to date         Regional    E92000001
#> 2451        2026         Week 16 Year to date  Local authority    E92000001
#> 2452        2026         Week 16 Year to date  Local authority    E92000001
#> 2453        2026         Week 16 Year to date  Local authority    E92000001
#> 2454        2026         Week 16 Year to date  Local authority    E92000001
#> 2455        2026         Week 16 Year to date  Local authority    E92000001
#> 2456        2026         Week 16 Year to date  Local authority    E92000001
#> 2457        2026         Week 16 Year to date  Local authority    E92000001
#> 2458        2026         Week 16 Year to date  Local authority    E92000001
#> 2459        2026         Week 16 Year to date  Local authority    E92000001
#> 2460        2026         Week 16 Year to date  Local authority    E92000001
#> 2461        2026         Week 16 Year to date  Local authority    E92000001
#> 2462        2026         Week 16 Year to date  Local authority    E92000001
#> 2463        2026         Week 16 Year to date  Local authority    E92000001
#> 2464        2026         Week 16 Year to date  Local authority    E92000001
#> 2465        2026         Week 16 Year to date  Local authority    E92000001
#> 2466        2026         Week 16 Year to date  Local authority    E92000001
#> 2467        2026         Week 16 Year to date  Local authority    E92000001
#> 2468        2026         Week 16 Year to date  Local authority    E92000001
#> 2469        2026         Week 16 Year to date  Local authority    E92000001
#> 2470        2026         Week 16 Year to date  Local authority    E92000001
#> 2471        2026         Week 16 Year to date  Local authority    E92000001
#> 2472        2026         Week 16 Year to date  Local authority    E92000001
#> 2473        2026         Week 16 Year to date  Local authority    E92000001
#> 2474        2026         Week 16 Year to date  Local authority    E92000001
#> 2475        2026         Week 16 Year to date  Local authority    E92000001
#> 2476        2026         Week 16 Year to date  Local authority    E92000001
#> 2477        2026         Week 16 Year to date  Local authority    E92000001
#> 2478        2026         Week 16 Year to date  Local authority    E92000001
#> 2479        2026         Week 16 Year to date  Local authority    E92000001
#> 2480        2026         Week 16 Year to date  Local authority    E92000001
#> 2481        2026         Week 16 Year to date  Local authority    E92000001
#> 2482        2026         Week 16 Year to date  Local authority    E92000001
#> 2483        2026         Week 16 Year to date  Local authority    E92000001
#> 2484        2026         Week 16 Year to date  Local authority    E92000001
#> 2485        2026         Week 16 Year to date  Local authority    E92000001
#> 2486        2026         Week 16 Year to date  Local authority    E92000001
#> 2487        2026         Week 16 Year to date  Local authority    E92000001
#> 2488        2026         Week 16 Year to date  Local authority    E92000001
#> 2489        2026         Week 16 Year to date  Local authority    E92000001
#> 2490        2026         Week 16 Year to date  Local authority    E92000001
#> 2491        2026         Week 16 Year to date  Local authority    E92000001
#> 2492        2026         Week 16 Year to date  Local authority    E92000001
#> 2493        2026         Week 16 Year to date  Local authority    E92000001
#> 2494        2026         Week 16 Year to date  Local authority    E92000001
#> 2495        2026         Week 16 Year to date  Local authority    E92000001
#> 2496        2026         Week 16 Year to date  Local authority    E92000001
#> 2497        2026         Week 16 Year to date  Local authority    E92000001
#> 2498        2026         Week 16 Year to date  Local authority    E92000001
#> 2499        2026         Week 16 Year to date  Local authority    E92000001
#> 2500        2026         Week 16 Year to date  Local authority    E92000001
#> 2501        2026         Week 16 Year to date  Local authority    E92000001
#> 2502        2026         Week 16 Year to date  Local authority    E92000001
#> 2503        2026         Week 16 Year to date  Local authority    E92000001
#> 2504        2026         Week 16 Year to date  Local authority    E92000001
#> 2505        2026         Week 16 Year to date  Local authority    E92000001
#> 2506        2026         Week 16 Year to date  Local authority    E92000001
#> 2507        2026         Week 16 Year to date  Local authority    E92000001
#> 2508        2026         Week 16 Year to date  Local authority    E92000001
#> 2509        2026         Week 16 Year to date  Local authority    E92000001
#> 2510        2026         Week 16 Year to date  Local authority    E92000001
#> 2511        2026         Week 16 Year to date  Local authority    E92000001
#> 2512        2026         Week 16 Year to date  Local authority    E92000001
#> 2513        2026         Week 16 Year to date  Local authority    E92000001
#> 2514        2026         Week 16 Year to date  Local authority    E92000001
#> 2515        2026         Week 16 Year to date  Local authority    E92000001
#> 2516        2026         Week 16 Year to date  Local authority    E92000001
#> 2517        2026         Week 16 Year to date  Local authority    E92000001
#> 2518        2026         Week 16 Year to date  Local authority    E92000001
#> 2519        2026         Week 16 Year to date  Local authority    E92000001
#> 2520        2026         Week 16 Year to date  Local authority    E92000001
#> 2521        2026         Week 16 Year to date  Local authority    E92000001
#> 2522        2026         Week 16 Year to date  Local authority    E92000001
#> 2523        2026         Week 16 Year to date  Local authority    E92000001
#> 2524        2026         Week 16 Year to date  Local authority    E92000001
#> 2525        2026         Week 16 Year to date  Local authority    E92000001
#> 2526        2026         Week 16 Year to date  Local authority    E92000001
#> 2527        2026         Week 16 Year to date         Regional    E92000001
#> 2528        2026         Week 16 Year to date         Regional    E92000001
#> 2529        2026         Week 16 Year to date         Regional    E92000001
#> 2530        2026         Week 16 Year to date         Regional    E92000001
#> 2531        2026         Week 16 Year to date  Local authority    E92000001
#> 2532        2026         Week 16 Year to date  Local authority    E92000001
#> 2533        2026         Week 16 Year to date  Local authority    E92000001
#> 2534        2026         Week 16 Year to date  Local authority    E92000001
#> 2535        2026         Week 16 Year to date  Local authority    E92000001
#> 2536        2026         Week 16 Year to date  Local authority    E92000001
#> 2537        2026         Week 16 Year to date  Local authority    E92000001
#> 2538        2026         Week 16 Year to date  Local authority    E92000001
#> 2539        2026         Week 16 Year to date  Local authority    E92000001
#> 2540        2026         Week 16 Year to date  Local authority    E92000001
#> 2541        2026         Week 16 Year to date  Local authority    E92000001
#> 2542        2026         Week 16 Year to date  Local authority    E92000001
#> 2543        2026         Week 16 Year to date  Local authority    E92000001
#> 2544        2026         Week 16 Year to date  Local authority    E92000001
#> 2545        2026         Week 16 Year to date  Local authority    E92000001
#> 2546        2026         Week 16 Year to date  Local authority    E92000001
#> 2547        2026         Week 16 Year to date  Local authority    E92000001
#> 2548        2026         Week 16 Year to date  Local authority    E92000001
#> 2549        2026         Week 16 Year to date  Local authority    E92000001
#> 2550        2026         Week 16 Year to date  Local authority    E92000001
#> 2551        2026         Week 16 Year to date  Local authority    E92000001
#> 2552        2026         Week 16 Year to date  Local authority    E92000001
#> 2553        2026         Week 16 Year to date  Local authority    E92000001
#> 2554        2026         Week 16 Year to date  Local authority    E92000001
#> 2555        2026         Week 16 Year to date  Local authority    E92000001
#> 2556        2026         Week 16 Year to date  Local authority    E92000001
#> 2557        2026         Week 16 Year to date  Local authority    E92000001
#> 2558        2026         Week 16 Year to date  Local authority    E92000001
#> 2559        2026         Week 16 Year to date  Local authority    E92000001
#> 2560        2026         Week 16 Year to date  Local authority    E92000001
#> 2561        2026         Week 16 Year to date  Local authority    E92000001
#> 2562        2026         Week 16 Year to date  Local authority    E92000001
#> 2563        2026         Week 16 Year to date  Local authority    E92000001
#> 2564        2026         Week 16 Year to date  Local authority    E92000001
#> 2565        2026         Week 16 Year to date  Local authority    E92000001
#> 2566        2026         Week 16 Year to date  Local authority    E92000001
#> 2567        2026         Week 16 Year to date  Local authority    E92000001
#> 2568        2026         Week 16 Year to date  Local authority    E92000001
#> 2569        2026         Week 16 Year to date  Local authority    E92000001
#> 2570        2026         Week 16 Year to date  Local authority    E92000001
#> 2571        2026         Week 16 Year to date  Local authority    E92000001
#> 2572        2026         Week 16 Year to date  Local authority    E92000001
#> 2573        2026         Week 16 Year to date  Local authority    E92000001
#> 2574        2026         Week 16 Year to date  Local authority    E92000001
#> 2575        2026         Week 16 Year to date  Local authority    E92000001
#> 2576        2026         Week 16 Year to date  Local authority    E92000001
#> 2577        2026         Week 16 Year to date  Local authority    E92000001
#> 2578        2026         Week 16 Year to date  Local authority    E92000001
#> 2579        2026         Week 16 Year to date  Local authority    E92000001
#> 2580        2026         Week 16 Year to date  Local authority    E92000001
#> 2581        2026         Week 16 Year to date  Local authority    E92000001
#> 2582        2026         Week 16 Year to date  Local authority    E92000001
#> 2583        2026         Week 16 Year to date  Local authority    E92000001
#> 2584        2026         Week 16 Year to date  Local authority    E92000001
#> 2585        2026         Week 16 Year to date  Local authority    E92000001
#> 2586        2026         Week 16 Year to date  Local authority    E92000001
#> 2587        2026         Week 16 Year to date  Local authority    E92000001
#> 2588        2026         Week 16 Year to date  Local authority    E92000001
#> 2589        2026         Week 14 Year to date         National    E92000001
#> 2590        2026         Week 14 Year to date         National    E92000001
#> 2591        2026         Week 14 Year to date         National    E92000001
#> 2592        2026         Week 14 Year to date         National    E92000001
#> 2593        2026         Week 14 Year to date         Regional    E92000001
#> 2594        2026         Week 14 Year to date         Regional    E92000001
#> 2595        2026         Week 14 Year to date         Regional    E92000001
#> 2596        2026         Week 14 Year to date         Regional    E92000001
#> 2597        2026         Week 14 Year to date  Local authority    E92000001
#> 2598        2026         Week 14 Year to date  Local authority    E92000001
#> 2599        2026         Week 14 Year to date  Local authority    E92000001
#> 2600        2026         Week 14 Year to date  Local authority    E92000001
#> 2601        2026         Week 14 Year to date  Local authority    E92000001
#> 2602        2026         Week 14 Year to date  Local authority    E92000001
#> 2603        2026         Week 14 Year to date  Local authority    E92000001
#> 2604        2026         Week 14 Year to date  Local authority    E92000001
#> 2605        2026         Week 14 Year to date  Local authority    E92000001
#> 2606        2026         Week 14 Year to date  Local authority    E92000001
#> 2607        2026         Week 14 Year to date  Local authority    E92000001
#> 2608        2026         Week 14 Year to date  Local authority    E92000001
#> 2609        2026         Week 14 Year to date  Local authority    E92000001
#> 2610        2026         Week 14 Year to date  Local authority    E92000001
#> 2611        2026         Week 14 Year to date  Local authority    E92000001
#> 2612        2026         Week 14 Year to date  Local authority    E92000001
#> 2613        2026         Week 14 Year to date  Local authority    E92000001
#> 2614        2026         Week 14 Year to date  Local authority    E92000001
#> 2615        2026         Week 14 Year to date  Local authority    E92000001
#> 2616        2026         Week 14 Year to date  Local authority    E92000001
#> 2617        2026         Week 14 Year to date  Local authority    E92000001
#> 2618        2026         Week 14 Year to date  Local authority    E92000001
#> 2619        2026         Week 14 Year to date  Local authority    E92000001
#> 2620        2026         Week 14 Year to date  Local authority    E92000001
#> 2621        2026         Week 14 Year to date  Local authority    E92000001
#> 2622        2026         Week 14 Year to date  Local authority    E92000001
#> 2623        2026         Week 14 Year to date  Local authority    E92000001
#> 2624        2026         Week 14 Year to date  Local authority    E92000001
#> 2625        2026         Week 14 Year to date  Local authority    E92000001
#> 2626        2026         Week 14 Year to date  Local authority    E92000001
#> 2627        2026         Week 14 Year to date  Local authority    E92000001
#> 2628        2026         Week 14 Year to date  Local authority    E92000001
#> 2629        2026         Week 14 Year to date  Local authority    E92000001
#> 2630        2026         Week 14 Year to date  Local authority    E92000001
#> 2631        2026         Week 14 Year to date  Local authority    E92000001
#> 2632        2026         Week 14 Year to date  Local authority    E92000001
#> 2633        2026         Week 14 Year to date  Local authority    E92000001
#> 2634        2026         Week 14 Year to date  Local authority    E92000001
#> 2635        2026         Week 14 Year to date  Local authority    E92000001
#> 2636        2026         Week 14 Year to date  Local authority    E92000001
#> 2637        2026         Week 14 Year to date  Local authority    E92000001
#> 2638        2026         Week 14 Year to date  Local authority    E92000001
#> 2639        2026         Week 14 Year to date  Local authority    E92000001
#> 2640        2026         Week 14 Year to date  Local authority    E92000001
#> 2641        2026         Week 14 Year to date  Local authority    E92000001
#> 2642        2026         Week 14 Year to date  Local authority    E92000001
#> 2643        2026         Week 14 Year to date  Local authority    E92000001
#> 2644        2026         Week 14 Year to date  Local authority    E92000001
#> 2645        2026         Week 14 Year to date         Regional    E92000001
#> 2646        2026         Week 14 Year to date         Regional    E92000001
#> 2647        2026         Week 14 Year to date         Regional    E92000001
#> 2648        2026         Week 14 Year to date         Regional    E92000001
#> 2649        2026         Week 14 Year to date  Local authority    E92000001
#> 2650        2026         Week 14 Year to date  Local authority    E92000001
#> 2651        2026         Week 14 Year to date  Local authority    E92000001
#> 2652        2026         Week 14 Year to date  Local authority    E92000001
#> 2653        2026         Week 14 Year to date  Local authority    E92000001
#> 2654        2026         Week 14 Year to date  Local authority    E92000001
#> 2655        2026         Week 14 Year to date  Local authority    E92000001
#> 2656        2026         Week 14 Year to date  Local authority    E92000001
#> 2657        2026         Week 14 Year to date  Local authority    E92000001
#> 2658        2026         Week 14 Year to date  Local authority    E92000001
#> 2659        2026         Week 14 Year to date  Local authority    E92000001
#> 2660        2026         Week 14 Year to date  Local authority    E92000001
#> 2661        2026         Week 14 Year to date  Local authority    E92000001
#> 2662        2026         Week 14 Year to date  Local authority    E92000001
#> 2663        2026         Week 14 Year to date  Local authority    E92000001
#> 2664        2026         Week 14 Year to date  Local authority    E92000001
#> 2665        2026         Week 14 Year to date  Local authority    E92000001
#> 2666        2026         Week 14 Year to date  Local authority    E92000001
#> 2667        2026         Week 14 Year to date  Local authority    E92000001
#> 2668        2026         Week 14 Year to date  Local authority    E92000001
#> 2669        2026         Week 14 Year to date  Local authority    E92000001
#> 2670        2026         Week 14 Year to date  Local authority    E92000001
#> 2671        2026         Week 14 Year to date  Local authority    E92000001
#> 2672        2026         Week 14 Year to date  Local authority    E92000001
#> 2673        2026         Week 14 Year to date  Local authority    E92000001
#> 2674        2026         Week 14 Year to date  Local authority    E92000001
#> 2675        2026         Week 14 Year to date  Local authority    E92000001
#> 2676        2026         Week 14 Year to date  Local authority    E92000001
#> 2677        2026         Week 14 Year to date  Local authority    E92000001
#> 2678        2026         Week 14 Year to date  Local authority    E92000001
#> 2679        2026         Week 14 Year to date  Local authority    E92000001
#> 2680        2026         Week 14 Year to date  Local authority    E92000001
#> 2681        2026         Week 14 Year to date  Local authority    E92000001
#> 2682        2026         Week 14 Year to date  Local authority    E92000001
#> 2683        2026         Week 14 Year to date  Local authority    E92000001
#> 2684        2026         Week 14 Year to date  Local authority    E92000001
#> 2685        2026         Week 14 Year to date  Local authority    E92000001
#> 2686        2026         Week 14 Year to date  Local authority    E92000001
#> 2687        2026         Week 14 Year to date  Local authority    E92000001
#> 2688        2026         Week 14 Year to date  Local authority    E92000001
#> 2689        2026         Week 14 Year to date  Local authority    E92000001
#> 2690        2026         Week 14 Year to date  Local authority    E92000001
#> 2691        2026         Week 14 Year to date  Local authority    E92000001
#> 2692        2026         Week 14 Year to date  Local authority    E92000001
#> 2693        2026         Week 14 Year to date  Local authority    E92000001
#> 2694        2026         Week 14 Year to date  Local authority    E92000001
#> 2695        2026         Week 14 Year to date  Local authority    E92000001
#> 2696        2026         Week 14 Year to date  Local authority    E92000001
#> 2697        2026         Week 14 Year to date  Local authority    E92000001
#> 2698        2026         Week 14 Year to date  Local authority    E92000001
#> 2699        2026         Week 14 Year to date  Local authority    E92000001
#> 2700        2026         Week 14 Year to date  Local authority    E92000001
#> 2701        2026         Week 14 Year to date  Local authority    E92000001
#> 2702        2026         Week 14 Year to date  Local authority    E92000001
#> 2703        2026         Week 14 Year to date  Local authority    E92000001
#> 2704        2026         Week 14 Year to date  Local authority    E92000001
#> 2705        2026         Week 14 Year to date  Local authority    E92000001
#> 2706        2026         Week 14 Year to date  Local authority    E92000001
#> 2707        2026         Week 14 Year to date  Local authority    E92000001
#> 2708        2026         Week 14 Year to date  Local authority    E92000001
#> 2709        2026         Week 14 Year to date  Local authority    E92000001
#> 2710        2026         Week 14 Year to date  Local authority    E92000001
#> 2711        2026         Week 14 Year to date  Local authority    E92000001
#> 2712        2026         Week 14 Year to date  Local authority    E92000001
#> 2713        2026         Week 14 Year to date  Local authority    E92000001
#> 2714        2026         Week 14 Year to date  Local authority    E92000001
#> 2715        2026         Week 14 Year to date  Local authority    E92000001
#> 2716        2026         Week 14 Year to date  Local authority    E92000001
#> 2717        2026         Week 14 Year to date  Local authority    E92000001
#> 2718        2026         Week 14 Year to date  Local authority    E92000001
#> 2719        2026         Week 14 Year to date  Local authority    E92000001
#> 2720        2026         Week 14 Year to date  Local authority    E92000001
#> 2721        2026         Week 14 Year to date  Local authority    E92000001
#> 2722        2026         Week 14 Year to date  Local authority    E92000001
#> 2723        2026         Week 14 Year to date  Local authority    E92000001
#> 2724        2026         Week 14 Year to date  Local authority    E92000001
#> 2725        2026         Week 14 Year to date  Local authority    E92000001
#> 2726        2026         Week 14 Year to date  Local authority    E92000001
#> 2727        2026         Week 14 Year to date  Local authority    E92000001
#> 2728        2026         Week 14 Year to date  Local authority    E92000001
#> 2729        2026         Week 14 Year to date  Local authority    E92000001
#> 2730        2026         Week 14 Year to date  Local authority    E92000001
#> 2731        2026         Week 14 Year to date  Local authority    E92000001
#> 2732        2026         Week 14 Year to date  Local authority    E92000001
#> 2733        2026         Week 14 Year to date  Local authority    E92000001
#> 2734        2026         Week 14 Year to date  Local authority    E92000001
#> 2735        2026         Week 14 Year to date  Local authority    E92000001
#> 2736        2026         Week 14 Year to date  Local authority    E92000001
#> 2737        2026         Week 14 Year to date  Local authority    E92000001
#> 2738        2026         Week 14 Year to date  Local authority    E92000001
#> 2739        2026         Week 14 Year to date  Local authority    E92000001
#> 2740        2026         Week 14 Year to date  Local authority    E92000001
#> 2741        2026         Week 14 Year to date  Local authority    E92000001
#> 2742        2026         Week 14 Year to date  Local authority    E92000001
#> 2743        2026         Week 14 Year to date  Local authority    E92000001
#> 2744        2026         Week 14 Year to date  Local authority    E92000001
#> 2745        2026         Week 14 Year to date         Regional    E92000001
#> 2746        2026         Week 14 Year to date         Regional    E92000001
#> 2747        2026         Week 14 Year to date         Regional    E92000001
#> 2748        2026         Week 14 Year to date         Regional    E92000001
#> 2749        2026         Week 14 Year to date  Local authority    E92000001
#> 2750        2026         Week 14 Year to date  Local authority    E92000001
#> 2751        2026         Week 14 Year to date  Local authority    E92000001
#> 2752        2026         Week 14 Year to date  Local authority    E92000001
#> 2753        2026         Week 14 Year to date  Local authority    E92000001
#> 2754        2026         Week 14 Year to date  Local authority    E92000001
#> 2755        2026         Week 14 Year to date  Local authority    E92000001
#> 2756        2026         Week 14 Year to date  Local authority    E92000001
#> 2757        2026         Week 14 Year to date  Local authority    E92000001
#> 2758        2026         Week 14 Year to date  Local authority    E92000001
#> 2759        2026         Week 14 Year to date  Local authority    E92000001
#> 2760        2026         Week 14 Year to date  Local authority    E92000001
#> 2761        2026         Week 14 Year to date  Local authority    E92000001
#> 2762        2026         Week 14 Year to date  Local authority    E92000001
#> 2763        2026         Week 14 Year to date  Local authority    E92000001
#> 2764        2026         Week 14 Year to date  Local authority    E92000001
#> 2765        2026         Week 14 Year to date  Local authority    E92000001
#> 2766        2026         Week 14 Year to date  Local authority    E92000001
#> 2767        2026         Week 14 Year to date  Local authority    E92000001
#> 2768        2026         Week 14 Year to date  Local authority    E92000001
#> 2769        2026         Week 14 Year to date  Local authority    E92000001
#> 2770        2026         Week 14 Year to date  Local authority    E92000001
#> 2771        2026         Week 14 Year to date  Local authority    E92000001
#> 2772        2026         Week 14 Year to date  Local authority    E92000001
#> 2773        2026         Week 14 Year to date  Local authority    E92000001
#> 2774        2026         Week 14 Year to date  Local authority    E92000001
#> 2775        2026         Week 14 Year to date  Local authority    E92000001
#> 2776        2026         Week 14 Year to date  Local authority    E92000001
#> 2777        2026         Week 14 Year to date  Local authority    E92000001
#> 2778        2026         Week 14 Year to date  Local authority    E92000001
#> 2779        2026         Week 14 Year to date  Local authority    E92000001
#> 2780        2026         Week 14 Year to date  Local authority    E92000001
#> 2781        2026         Week 14 Year to date  Local authority    E92000001
#> 2782        2026         Week 14 Year to date  Local authority    E92000001
#> 2783        2026         Week 14 Year to date  Local authority    E92000001
#> 2784        2026         Week 14 Year to date  Local authority    E92000001
#> 2785        2026         Week 14 Year to date  Local authority    E92000001
#> 2786        2026         Week 14 Year to date  Local authority    E92000001
#> 2787        2026         Week 14 Year to date  Local authority    E92000001
#> 2788        2026         Week 14 Year to date  Local authority    E92000001
#> 2789        2026         Week 14 Year to date  Local authority    E92000001
#> 2790        2026         Week 14 Year to date  Local authority    E92000001
#> 2791        2026         Week 14 Year to date  Local authority    E92000001
#> 2792        2026         Week 14 Year to date  Local authority    E92000001
#> 2793        2026         Week 14 Year to date  Local authority    E92000001
#> 2794        2026         Week 14 Year to date  Local authority    E92000001
#> 2795        2026         Week 14 Year to date  Local authority    E92000001
#> 2796        2026         Week 14 Year to date  Local authority    E92000001
#> 2797        2026         Week 14 Year to date  Local authority    E92000001
#> 2798        2026         Week 14 Year to date  Local authority    E92000001
#> 2799        2026         Week 14 Year to date  Local authority    E92000001
#> 2800        2026         Week 14 Year to date  Local authority    E92000001
#> 2801        2026         Week 14 Year to date  Local authority    E92000001
#> 2802        2026         Week 14 Year to date  Local authority    E92000001
#> 2803        2026         Week 14 Year to date  Local authority    E92000001
#> 2804        2026         Week 14 Year to date  Local authority    E92000001
#> 2805        2026         Week 14 Year to date  Local authority    E92000001
#> 2806        2026         Week 14 Year to date  Local authority    E92000001
#> 2807        2026         Week 14 Year to date  Local authority    E92000001
#> 2808        2026         Week 14 Year to date  Local authority    E92000001
#> 2809        2026         Week 14 Year to date         Regional    E92000001
#> 2810        2026         Week 14 Year to date         Regional    E92000001
#> 2811        2026         Week 14 Year to date         Regional    E92000001
#> 2812        2026         Week 14 Year to date         Regional    E92000001
#> 2813        2026         Week 14 Year to date  Local authority    E92000001
#> 2814        2026         Week 14 Year to date  Local authority    E92000001
#> 2815        2026         Week 14 Year to date  Local authority    E92000001
#> 2816        2026         Week 14 Year to date  Local authority    E92000001
#> 2817        2026         Week 14 Year to date  Local authority    E92000001
#> 2818        2026         Week 14 Year to date  Local authority    E92000001
#> 2819        2026         Week 14 Year to date  Local authority    E92000001
#> 2820        2026         Week 14 Year to date  Local authority    E92000001
#> 2821        2026         Week 14 Year to date  Local authority    E92000001
#> 2822        2026         Week 14 Year to date  Local authority    E92000001
#> 2823        2026         Week 14 Year to date  Local authority    E92000001
#> 2824        2026         Week 14 Year to date  Local authority    E92000001
#> 2825        2026         Week 14 Year to date  Local authority    E92000001
#> 2826        2026         Week 14 Year to date  Local authority    E92000001
#> 2827        2026         Week 14 Year to date  Local authority    E92000001
#> 2828        2026         Week 14 Year to date  Local authority    E92000001
#> 2829        2026         Week 14 Year to date  Local authority    E92000001
#> 2830        2026         Week 14 Year to date  Local authority    E92000001
#> 2831        2026         Week 14 Year to date  Local authority    E92000001
#> 2832        2026         Week 14 Year to date  Local authority    E92000001
#> 2833        2026         Week 14 Year to date  Local authority    E92000001
#> 2834        2026         Week 14 Year to date  Local authority    E92000001
#> 2835        2026         Week 14 Year to date  Local authority    E92000001
#> 2836        2026         Week 14 Year to date  Local authority    E92000001
#> 2837        2026         Week 14 Year to date  Local authority    E92000001
#> 2838        2026         Week 14 Year to date  Local authority    E92000001
#> 2839        2026         Week 14 Year to date  Local authority    E92000001
#> 2840        2026         Week 14 Year to date  Local authority    E92000001
#> 2841        2026         Week 14 Year to date  Local authority    E92000001
#> 2842        2026         Week 14 Year to date  Local authority    E92000001
#> 2843        2026         Week 14 Year to date  Local authority    E92000001
#> 2844        2026         Week 14 Year to date  Local authority    E92000001
#> 2845        2026         Week 14 Year to date  Local authority    E92000001
#> 2846        2026         Week 14 Year to date  Local authority    E92000001
#> 2847        2026         Week 14 Year to date  Local authority    E92000001
#> 2848        2026         Week 14 Year to date  Local authority    E92000001
#> 2849        2026         Week 14 Year to date  Local authority    E92000001
#> 2850        2026         Week 14 Year to date  Local authority    E92000001
#> 2851        2026         Week 14 Year to date  Local authority    E92000001
#> 2852        2026         Week 14 Year to date         Regional    E92000001
#> 2853        2026         Week 14 Year to date         Regional    E92000001
#> 2854        2026         Week 14 Year to date         Regional    E92000001
#> 2855        2026         Week 14 Year to date         Regional    E92000001
#> 2856        2026         Week 14 Year to date  Local authority    E92000001
#> 2857        2026         Week 14 Year to date  Local authority    E92000001
#> 2858        2026         Week 14 Year to date  Local authority    E92000001
#> 2859        2026         Week 14 Year to date  Local authority    E92000001
#> 2860        2026         Week 14 Year to date  Local authority    E92000001
#> 2861        2026         Week 14 Year to date  Local authority    E92000001
#> 2862        2026         Week 14 Year to date  Local authority    E92000001
#> 2863        2026         Week 14 Year to date  Local authority    E92000001
#> 2864        2026         Week 14 Year to date  Local authority    E92000001
#> 2865        2026         Week 14 Year to date  Local authority    E92000001
#> 2866        2026         Week 14 Year to date  Local authority    E92000001
#> 2867        2026         Week 14 Year to date  Local authority    E92000001
#> 2868        2026         Week 14 Year to date  Local authority    E92000001
#> 2869        2026         Week 14 Year to date  Local authority    E92000001
#> 2870        2026         Week 14 Year to date  Local authority    E92000001
#> 2871        2026         Week 14 Year to date  Local authority    E92000001
#> 2872        2026         Week 14 Year to date  Local authority    E92000001
#> 2873        2026         Week 14 Year to date  Local authority    E92000001
#> 2874        2026         Week 14 Year to date  Local authority    E92000001
#> 2875        2026         Week 14 Year to date  Local authority    E92000001
#> 2876        2026         Week 14 Year to date  Local authority    E92000001
#> 2877        2026         Week 14 Year to date  Local authority    E92000001
#> 2878        2026         Week 14 Year to date  Local authority    E92000001
#> 2879        2026         Week 14 Year to date  Local authority    E92000001
#> 2880        2026         Week 14 Year to date  Local authority    E92000001
#> 2881        2026         Week 14 Year to date  Local authority    E92000001
#> 2882        2026         Week 14 Year to date  Local authority    E92000001
#> 2883        2026         Week 14 Year to date  Local authority    E92000001
#> 2884        2026         Week 14 Year to date  Local authority    E92000001
#> 2885        2026         Week 14 Year to date  Local authority    E92000001
#> 2886        2026         Week 14 Year to date  Local authority    E92000001
#> 2887        2026         Week 14 Year to date  Local authority    E92000001
#> 2888        2026         Week 14 Year to date  Local authority    E92000001
#> 2889        2026         Week 14 Year to date  Local authority    E92000001
#> 2890        2026         Week 14 Year to date  Local authority    E92000001
#> 2891        2026         Week 14 Year to date  Local authority    E92000001
#> 2892        2026         Week 14 Year to date  Local authority    E92000001
#> 2893        2026         Week 14 Year to date  Local authority    E92000001
#> 2894        2026         Week 14 Year to date  Local authority    E92000001
#> 2895        2026         Week 14 Year to date  Local authority    E92000001
#> 2896        2026         Week 14 Year to date  Local authority    E92000001
#> 2897        2026         Week 14 Year to date  Local authority    E92000001
#> 2898        2026         Week 14 Year to date  Local authority    E92000001
#> 2899        2026         Week 14 Year to date  Local authority    E92000001
#> 2900        2026         Week 14 Year to date  Local authority    E92000001
#> 2901        2026         Week 14 Year to date  Local authority    E92000001
#> 2902        2026         Week 14 Year to date  Local authority    E92000001
#> 2903        2026         Week 14 Year to date  Local authority    E92000001
#> 2904        2026         Week 14 Year to date  Local authority    E92000001
#> 2905        2026         Week 14 Year to date  Local authority    E92000001
#> 2906        2026         Week 14 Year to date  Local authority    E92000001
#> 2907        2026         Week 14 Year to date  Local authority    E92000001
#> 2908        2026         Week 14 Year to date  Local authority    E92000001
#> 2909        2026         Week 14 Year to date  Local authority    E92000001
#> 2910        2026         Week 14 Year to date  Local authority    E92000001
#> 2911        2026         Week 14 Year to date  Local authority    E92000001
#> 2912        2026         Week 14 Year to date         Regional    E92000001
#> 2913        2026         Week 14 Year to date         Regional    E92000001
#> 2914        2026         Week 14 Year to date         Regional    E92000001
#> 2915        2026         Week 14 Year to date         Regional    E92000001
#> 2916        2026         Week 14 Year to date  Local authority    E92000001
#> 2917        2026         Week 14 Year to date  Local authority    E92000001
#> 2918        2026         Week 14 Year to date  Local authority    E92000001
#> 2919        2026         Week 14 Year to date  Local authority    E92000001
#> 2920        2026         Week 14 Year to date  Local authority    E92000001
#> 2921        2026         Week 14 Year to date  Local authority    E92000001
#> 2922        2026         Week 14 Year to date  Local authority    E92000001
#> 2923        2026         Week 14 Year to date  Local authority    E92000001
#> 2924        2026         Week 14 Year to date  Local authority    E92000001
#> 2925        2026         Week 14 Year to date  Local authority    E92000001
#> 2926        2026         Week 14 Year to date  Local authority    E92000001
#> 2927        2026         Week 14 Year to date  Local authority    E92000001
#> 2928        2026         Week 14 Year to date  Local authority    E92000001
#> 2929        2026         Week 14 Year to date  Local authority    E92000001
#> 2930        2026         Week 14 Year to date  Local authority    E92000001
#> 2931        2026         Week 14 Year to date  Local authority    E92000001
#> 2932        2026         Week 14 Year to date  Local authority    E92000001
#> 2933        2026         Week 14 Year to date  Local authority    E92000001
#> 2934        2026         Week 14 Year to date  Local authority    E92000001
#> 2935        2026         Week 14 Year to date  Local authority    E92000001
#> 2936        2026         Week 14 Year to date  Local authority    E92000001
#> 2937        2026         Week 14 Year to date  Local authority    E92000001
#> 2938        2026         Week 14 Year to date  Local authority    E92000001
#> 2939        2026         Week 14 Year to date  Local authority    E92000001
#> 2940        2026         Week 14 Year to date  Local authority    E92000001
#> 2941        2026         Week 14 Year to date  Local authority    E92000001
#> 2942        2026         Week 14 Year to date  Local authority    E92000001
#> 2943        2026         Week 14 Year to date  Local authority    E92000001
#> 2944        2026         Week 14 Year to date  Local authority    E92000001
#> 2945        2026         Week 14 Year to date  Local authority    E92000001
#> 2946        2026         Week 14 Year to date  Local authority    E92000001
#> 2947        2026         Week 14 Year to date  Local authority    E92000001
#> 2948        2026         Week 14 Year to date  Local authority    E92000001
#> 2949        2026         Week 14 Year to date  Local authority    E92000001
#> 2950        2026         Week 14 Year to date  Local authority    E92000001
#> 2951        2026         Week 14 Year to date  Local authority    E92000001
#> 2952        2026         Week 14 Year to date  Local authority    E92000001
#> 2953        2026         Week 14 Year to date  Local authority    E92000001
#> 2954        2026         Week 14 Year to date  Local authority    E92000001
#> 2955        2026         Week 14 Year to date  Local authority    E92000001
#> 2956        2026         Week 14 Year to date  Local authority    E92000001
#> 2957        2026         Week 14 Year to date  Local authority    E92000001
#> 2958        2026         Week 14 Year to date  Local authority    E92000001
#> 2959        2026         Week 14 Year to date  Local authority    E92000001
#> 2960        2026         Week 14 Year to date         Regional    E92000001
#> 2961        2026         Week 14 Year to date         Regional    E92000001
#> 2962        2026         Week 14 Year to date         Regional    E92000001
#> 2963        2026         Week 14 Year to date         Regional    E92000001
#> 2964        2026         Week 14 Year to date  Local authority    E92000001
#> 2965        2026         Week 14 Year to date  Local authority    E92000001
#> 2966        2026         Week 14 Year to date  Local authority    E92000001
#> 2967        2026         Week 14 Year to date  Local authority    E92000001
#> 2968        2026         Week 14 Year to date  Local authority    E92000001
#> 2969        2026         Week 14 Year to date  Local authority    E92000001
#> 2970        2026         Week 14 Year to date  Local authority    E92000001
#> 2971        2026         Week 14 Year to date  Local authority    E92000001
#> 2972        2026         Week 14 Year to date  Local authority    E92000001
#> 2973        2026         Week 14 Year to date  Local authority    E92000001
#> 2974        2026         Week 14 Year to date  Local authority    E92000001
#> 2975        2026         Week 14 Year to date  Local authority    E92000001
#> 2976        2026         Week 14 Year to date  Local authority    E92000001
#> 2977        2026         Week 14 Year to date  Local authority    E92000001
#> 2978        2026         Week 14 Year to date  Local authority    E92000001
#> 2979        2026         Week 14 Year to date  Local authority    E92000001
#> 2980        2026         Week 14 Year to date  Local authority    E92000001
#> 2981        2026         Week 14 Year to date  Local authority    E92000001
#> 2982        2026         Week 14 Year to date  Local authority    E92000001
#> 2983        2026         Week 14 Year to date  Local authority    E92000001
#> 2984        2026         Week 14 Year to date  Local authority    E92000001
#> 2985        2026         Week 14 Year to date  Local authority    E92000001
#> 2986        2026         Week 14 Year to date  Local authority    E92000001
#> 2987        2026         Week 14 Year to date  Local authority    E92000001
#> 2988        2026         Week 14 Year to date  Local authority    E92000001
#> 2989        2026         Week 14 Year to date  Local authority    E92000001
#> 2990        2026         Week 14 Year to date  Local authority    E92000001
#> 2991        2026         Week 14 Year to date  Local authority    E92000001
#> 2992        2026         Week 14 Year to date  Local authority    E92000001
#> 2993        2026         Week 14 Year to date  Local authority    E92000001
#> 2994        2026         Week 14 Year to date  Local authority    E92000001
#> 2995        2026         Week 14 Year to date  Local authority    E92000001
#> 2996        2026         Week 14 Year to date  Local authority    E92000001
#> 2997        2026         Week 14 Year to date  Local authority    E92000001
#> 2998        2026         Week 14 Year to date  Local authority    E92000001
#> 2999        2026         Week 14 Year to date  Local authority    E92000001
#> 3000        2026         Week 14 Year to date  Local authority    E92000001
#> 3001        2026         Week 14 Year to date  Local authority    E92000001
#> 3002        2026         Week 14 Year to date  Local authority    E92000001
#> 3003        2026         Week 14 Year to date  Local authority    E92000001
#> 3004        2026         Week 14 Year to date  Local authority    E92000001
#> 3005        2026         Week 14 Year to date  Local authority    E92000001
#> 3006        2026         Week 14 Year to date  Local authority    E92000001
#> 3007        2026         Week 14 Year to date  Local authority    E92000001
#> 3008        2026         Week 14 Year to date  Local authority    E92000001
#> 3009        2026         Week 14 Year to date  Local authority    E92000001
#> 3010        2026         Week 14 Year to date  Local authority    E92000001
#> 3011        2026         Week 14 Year to date  Local authority    E92000001
#> 3012        2026         Week 14 Year to date  Local authority    E92000001
#> 3013        2026         Week 14 Year to date  Local authority    E92000001
#> 3014        2026         Week 14 Year to date  Local authority    E92000001
#> 3015        2026         Week 14 Year to date  Local authority    E92000001
#> 3016        2026         Week 14 Year to date  Local authority    E92000001
#> 3017        2026         Week 14 Year to date  Local authority    E92000001
#> 3018        2026         Week 14 Year to date  Local authority    E92000001
#> 3019        2026         Week 14 Year to date  Local authority    E92000001
#> 3020        2026         Week 14 Year to date  Local authority    E92000001
#> 3021        2026         Week 14 Year to date  Local authority    E92000001
#> 3022        2026         Week 14 Year to date  Local authority    E92000001
#> 3023        2026         Week 14 Year to date  Local authority    E92000001
#> 3024        2026         Week 14 Year to date  Local authority    E92000001
#> 3025        2026         Week 14 Year to date  Local authority    E92000001
#> 3026        2026         Week 14 Year to date  Local authority    E92000001
#> 3027        2026         Week 14 Year to date  Local authority    E92000001
#> 3028        2026         Week 14 Year to date  Local authority    E92000001
#> 3029        2026         Week 14 Year to date  Local authority    E92000001
#> 3030        2026         Week 14 Year to date  Local authority    E92000001
#> 3031        2026         Week 14 Year to date  Local authority    E92000001
#> 3032        2026         Week 14 Year to date  Local authority    E92000001
#> 3033        2026         Week 14 Year to date  Local authority    E92000001
#> 3034        2026         Week 14 Year to date  Local authority    E92000001
#> 3035        2026         Week 14 Year to date  Local authority    E92000001
#> 3036        2026         Week 14 Year to date  Local authority    E92000001
#> 3037        2026         Week 14 Year to date  Local authority    E92000001
#> 3038        2026         Week 14 Year to date  Local authority    E92000001
#> 3039        2026         Week 14 Year to date  Local authority    E92000001
#> 3040        2026         Week 14 Year to date  Local authority    E92000001
#> 3041        2026         Week 14 Year to date  Local authority    E92000001
#> 3042        2026         Week 14 Year to date  Local authority    E92000001
#> 3043        2026         Week 14 Year to date  Local authority    E92000001
#> 3044        2026         Week 14 Year to date  Local authority    E92000001
#> 3045        2026         Week 14 Year to date  Local authority    E92000001
#> 3046        2026         Week 14 Year to date  Local authority    E92000001
#> 3047        2026         Week 14 Year to date  Local authority    E92000001
#> 3048        2026         Week 14 Year to date  Local authority    E92000001
#> 3049        2026         Week 14 Year to date  Local authority    E92000001
#> 3050        2026         Week 14 Year to date  Local authority    E92000001
#> 3051        2026         Week 14 Year to date  Local authority    E92000001
#> 3052        2026         Week 14 Year to date  Local authority    E92000001
#> 3053        2026         Week 14 Year to date  Local authority    E92000001
#> 3054        2026         Week 14 Year to date  Local authority    E92000001
#> 3055        2026         Week 14 Year to date  Local authority    E92000001
#> 3056        2026         Week 14 Year to date  Local authority    E92000001
#> 3057        2026         Week 14 Year to date  Local authority    E92000001
#> 3058        2026         Week 14 Year to date  Local authority    E92000001
#> 3059        2026         Week 14 Year to date  Local authority    E92000001
#> 3060        2026         Week 14 Year to date  Local authority    E92000001
#> 3061        2026         Week 14 Year to date  Local authority    E92000001
#> 3062        2026         Week 14 Year to date  Local authority    E92000001
#> 3063        2026         Week 14 Year to date  Local authority    E92000001
#> 3064        2026         Week 14 Year to date  Local authority    E92000001
#> 3065        2026         Week 14 Year to date  Local authority    E92000001
#> 3066        2026         Week 14 Year to date  Local authority    E92000001
#> 3067        2026         Week 14 Year to date  Local authority    E92000001
#> 3068        2026         Week 14 Year to date  Local authority    E92000001
#> 3069        2026         Week 14 Year to date  Local authority    E92000001
#> 3070        2026         Week 14 Year to date  Local authority    E92000001
#> 3071        2026         Week 14 Year to date  Local authority    E92000001
#> 3072        2026         Week 14 Year to date  Local authority    E92000001
#> 3073        2026         Week 14 Year to date  Local authority    E92000001
#> 3074        2026         Week 14 Year to date  Local authority    E92000001
#> 3075        2026         Week 14 Year to date  Local authority    E92000001
#> 3076        2026         Week 14 Year to date  Local authority    E92000001
#> 3077        2026         Week 14 Year to date  Local authority    E92000001
#> 3078        2026         Week 14 Year to date  Local authority    E92000001
#> 3079        2026         Week 14 Year to date  Local authority    E92000001
#> 3080        2026         Week 14 Year to date  Local authority    E92000001
#> 3081        2026         Week 14 Year to date  Local authority    E92000001
#> 3082        2026         Week 14 Year to date  Local authority    E92000001
#> 3083        2026         Week 14 Year to date  Local authority    E92000001
#> 3084        2026         Week 14 Year to date  Local authority    E92000001
#> 3085        2026         Week 14 Year to date  Local authority    E92000001
#> 3086        2026         Week 14 Year to date  Local authority    E92000001
#> 3087        2026         Week 14 Year to date  Local authority    E92000001
#> 3088        2026         Week 14 Year to date  Local authority    E92000001
#> 3089        2026         Week 14 Year to date  Local authority    E92000001
#> 3090        2026         Week 14 Year to date  Local authority    E92000001
#> 3091        2026         Week 14 Year to date  Local authority    E92000001
#> 3092        2026         Week 14 Year to date  Local authority    E92000001
#> 3093        2026         Week 14 Year to date  Local authority    E92000001
#> 3094        2026         Week 14 Year to date         Regional    E92000001
#> 3095        2026         Week 14 Year to date         Regional    E92000001
#> 3096        2026         Week 14 Year to date         Regional    E92000001
#> 3097        2026         Week 14 Year to date         Regional    E92000001
#> 3098        2026         Week 14 Year to date  Local authority    E92000001
#> 3099        2026         Week 14 Year to date  Local authority    E92000001
#> 3100        2026         Week 14 Year to date  Local authority    E92000001
#> 3101        2026         Week 14 Year to date  Local authority    E92000001
#> 3102        2026         Week 14 Year to date  Local authority    E92000001
#> 3103        2026         Week 14 Year to date  Local authority    E92000001
#> 3104        2026         Week 14 Year to date  Local authority    E92000001
#> 3105        2026         Week 14 Year to date  Local authority    E92000001
#> 3106        2026         Week 14 Year to date  Local authority    E92000001
#> 3107        2026         Week 14 Year to date  Local authority    E92000001
#> 3108        2026         Week 14 Year to date  Local authority    E92000001
#> 3109        2026         Week 14 Year to date  Local authority    E92000001
#> 3110        2026         Week 14 Year to date  Local authority    E92000001
#> 3111        2026         Week 14 Year to date  Local authority    E92000001
#> 3112        2026         Week 14 Year to date  Local authority    E92000001
#> 3113        2026         Week 14 Year to date  Local authority    E92000001
#> 3114        2026         Week 14 Year to date  Local authority    E92000001
#> 3115        2026         Week 14 Year to date  Local authority    E92000001
#> 3116        2026         Week 14 Year to date  Local authority    E92000001
#> 3117        2026         Week 14 Year to date  Local authority    E92000001
#> 3118        2026         Week 14 Year to date  Local authority    E92000001
#> 3119        2026         Week 14 Year to date  Local authority    E92000001
#> 3120        2026         Week 14 Year to date  Local authority    E92000001
#> 3121        2026         Week 14 Year to date  Local authority    E92000001
#> 3122        2026         Week 14 Year to date  Local authority    E92000001
#> 3123        2026         Week 14 Year to date  Local authority    E92000001
#> 3124        2026         Week 14 Year to date  Local authority    E92000001
#> 3125        2026         Week 14 Year to date  Local authority    E92000001
#> 3126        2026         Week 14 Year to date  Local authority    E92000001
#> 3127        2026         Week 14 Year to date  Local authority    E92000001
#> 3128        2026         Week 14 Year to date  Local authority    E92000001
#> 3129        2026         Week 14 Year to date  Local authority    E92000001
#> 3130        2026         Week 14 Year to date  Local authority    E92000001
#> 3131        2026         Week 14 Year to date  Local authority    E92000001
#> 3132        2026         Week 14 Year to date  Local authority    E92000001
#> 3133        2026         Week 14 Year to date  Local authority    E92000001
#> 3134        2026         Week 14 Year to date  Local authority    E92000001
#> 3135        2026         Week 14 Year to date  Local authority    E92000001
#> 3136        2026         Week 14 Year to date  Local authority    E92000001
#> 3137        2026         Week 14 Year to date  Local authority    E92000001
#> 3138        2026         Week 14 Year to date  Local authority    E92000001
#> 3139        2026         Week 14 Year to date  Local authority    E92000001
#> 3140        2026         Week 14 Year to date  Local authority    E92000001
#> 3141        2026         Week 14 Year to date  Local authority    E92000001
#> 3142        2026         Week 14 Year to date  Local authority    E92000001
#> 3143        2026         Week 14 Year to date  Local authority    E92000001
#> 3144        2026         Week 14 Year to date  Local authority    E92000001
#> 3145        2026         Week 14 Year to date  Local authority    E92000001
#> 3146        2026         Week 14 Year to date  Local authority    E92000001
#> 3147        2026         Week 14 Year to date  Local authority    E92000001
#> 3148        2026         Week 14 Year to date  Local authority    E92000001
#> 3149        2026         Week 14 Year to date  Local authority    E92000001
#> 3150        2026         Week 14 Year to date  Local authority    E92000001
#> 3151        2026         Week 14 Year to date  Local authority    E92000001
#> 3152        2026         Week 14 Year to date  Local authority    E92000001
#> 3153        2026         Week 14 Year to date  Local authority    E92000001
#> 3154        2026         Week 14 Year to date  Local authority    E92000001
#> 3155        2026         Week 14 Year to date  Local authority    E92000001
#> 3156        2026         Week 14 Year to date  Local authority    E92000001
#> 3157        2026         Week 14 Year to date  Local authority    E92000001
#> 3158        2026         Week 14 Year to date  Local authority    E92000001
#> 3159        2026         Week 14 Year to date  Local authority    E92000001
#> 3160        2026         Week 14 Year to date  Local authority    E92000001
#> 3161        2026         Week 14 Year to date  Local authority    E92000001
#> 3162        2026         Week 14 Year to date  Local authority    E92000001
#> 3163        2026         Week 14 Year to date  Local authority    E92000001
#> 3164        2026         Week 14 Year to date  Local authority    E92000001
#> 3165        2026         Week 14 Year to date  Local authority    E92000001
#> 3166        2026         Week 14 Year to date  Local authority    E92000001
#> 3167        2026         Week 14 Year to date  Local authority    E92000001
#> 3168        2026         Week 14 Year to date  Local authority    E92000001
#> 3169        2026         Week 14 Year to date  Local authority    E92000001
#> 3170        2026         Week 14 Year to date  Local authority    E92000001
#> 3171        2026         Week 14 Year to date  Local authority    E92000001
#> 3172        2026         Week 14 Year to date  Local authority    E92000001
#> 3173        2026         Week 14 Year to date  Local authority    E92000001
#> 3174        2026         Week 14 Year to date         Regional    E92000001
#> 3175        2026         Week 14 Year to date         Regional    E92000001
#> 3176        2026         Week 14 Year to date         Regional    E92000001
#> 3177        2026         Week 14 Year to date         Regional    E92000001
#> 3178        2026         Week 14 Year to date  Local authority    E92000001
#> 3179        2026         Week 14 Year to date  Local authority    E92000001
#> 3180        2026         Week 14 Year to date  Local authority    E92000001
#> 3181        2026         Week 14 Year to date  Local authority    E92000001
#> 3182        2026         Week 14 Year to date  Local authority    E92000001
#> 3183        2026         Week 14 Year to date  Local authority    E92000001
#> 3184        2026         Week 14 Year to date  Local authority    E92000001
#> 3185        2026         Week 14 Year to date  Local authority    E92000001
#> 3186        2026         Week 14 Year to date  Local authority    E92000001
#> 3187        2026         Week 14 Year to date  Local authority    E92000001
#> 3188        2026         Week 14 Year to date  Local authority    E92000001
#> 3189        2026         Week 14 Year to date  Local authority    E92000001
#> 3190        2026         Week 14 Year to date  Local authority    E92000001
#> 3191        2026         Week 14 Year to date  Local authority    E92000001
#> 3192        2026         Week 14 Year to date  Local authority    E92000001
#> 3193        2026         Week 14 Year to date  Local authority    E92000001
#> 3194        2026         Week 14 Year to date  Local authority    E92000001
#> 3195        2026         Week 14 Year to date  Local authority    E92000001
#> 3196        2026         Week 14 Year to date  Local authority    E92000001
#> 3197        2026         Week 14 Year to date  Local authority    E92000001
#> 3198        2026         Week 14 Year to date  Local authority    E92000001
#> 3199        2026         Week 14 Year to date  Local authority    E92000001
#> 3200        2026         Week 14 Year to date  Local authority    E92000001
#> 3201        2026         Week 14 Year to date  Local authority    E92000001
#> 3202        2026         Week 14 Year to date  Local authority    E92000001
#> 3203        2026         Week 14 Year to date  Local authority    E92000001
#> 3204        2026         Week 14 Year to date  Local authority    E92000001
#> 3205        2026         Week 14 Year to date  Local authority    E92000001
#> 3206        2026         Week 14 Year to date  Local authority    E92000001
#> 3207        2026         Week 14 Year to date  Local authority    E92000001
#> 3208        2026         Week 14 Year to date  Local authority    E92000001
#> 3209        2026         Week 14 Year to date  Local authority    E92000001
#> 3210        2026         Week 14 Year to date  Local authority    E92000001
#> 3211        2026         Week 14 Year to date  Local authority    E92000001
#> 3212        2026         Week 14 Year to date  Local authority    E92000001
#> 3213        2026         Week 14 Year to date  Local authority    E92000001
#> 3214        2026         Week 14 Year to date  Local authority    E92000001
#> 3215        2026         Week 14 Year to date  Local authority    E92000001
#> 3216        2026         Week 14 Year to date  Local authority    E92000001
#> 3217        2026         Week 14 Year to date  Local authority    E92000001
#> 3218        2026         Week 14 Year to date  Local authority    E92000001
#> 3219        2026         Week 14 Year to date  Local authority    E92000001
#> 3220        2026         Week 14 Year to date  Local authority    E92000001
#> 3221        2026         Week 14 Year to date  Local authority    E92000001
#> 3222        2026         Week 14 Year to date  Local authority    E92000001
#> 3223        2026         Week 14 Year to date  Local authority    E92000001
#> 3224        2026         Week 14 Year to date  Local authority    E92000001
#> 3225        2026         Week 14 Year to date  Local authority    E92000001
#> 3226        2026         Week 14 Year to date  Local authority    E92000001
#> 3227        2026         Week 14 Year to date  Local authority    E92000001
#> 3228        2026         Week 14 Year to date  Local authority    E92000001
#> 3229        2026         Week 14 Year to date  Local authority    E92000001
#> 3230        2026         Week 14 Year to date  Local authority    E92000001
#> 3231        2026         Week 14 Year to date  Local authority    E92000001
#> 3232        2026         Week 14 Year to date  Local authority    E92000001
#> 3233        2026         Week 14 Year to date  Local authority    E92000001
#> 3234        2026         Week 14 Year to date  Local authority    E92000001
#> 3235        2026         Week 14 Year to date  Local authority    E92000001
#> 3236        2026         Week 12 Year to date         National    E92000001
#> 3237        2026         Week 12 Year to date         National    E92000001
#> 3238        2026         Week 12 Year to date         National    E92000001
#> 3239        2026         Week 12 Year to date         National    E92000001
#> 3240        2026         Week 12 Year to date         Regional    E92000001
#> 3241        2026         Week 12 Year to date         Regional    E92000001
#> 3242        2026         Week 12 Year to date         Regional    E92000001
#> 3243        2026         Week 12 Year to date         Regional    E92000001
#> 3244        2026         Week 12 Year to date  Local authority    E92000001
#> 3245        2026         Week 12 Year to date  Local authority    E92000001
#> 3246        2026         Week 12 Year to date  Local authority    E92000001
#> 3247        2026         Week 12 Year to date  Local authority    E92000001
#> 3248        2026         Week 12 Year to date  Local authority    E92000001
#> 3249        2026         Week 12 Year to date  Local authority    E92000001
#> 3250        2026         Week 12 Year to date  Local authority    E92000001
#> 3251        2026         Week 12 Year to date  Local authority    E92000001
#> 3252        2026         Week 12 Year to date  Local authority    E92000001
#> 3253        2026         Week 12 Year to date  Local authority    E92000001
#> 3254        2026         Week 12 Year to date  Local authority    E92000001
#> 3255        2026         Week 12 Year to date  Local authority    E92000001
#> 3256        2026         Week 12 Year to date  Local authority    E92000001
#> 3257        2026         Week 12 Year to date  Local authority    E92000001
#> 3258        2026         Week 12 Year to date  Local authority    E92000001
#> 3259        2026         Week 12 Year to date  Local authority    E92000001
#> 3260        2026         Week 12 Year to date  Local authority    E92000001
#> 3261        2026         Week 12 Year to date  Local authority    E92000001
#> 3262        2026         Week 12 Year to date  Local authority    E92000001
#> 3263        2026         Week 12 Year to date  Local authority    E92000001
#> 3264        2026         Week 12 Year to date  Local authority    E92000001
#> 3265        2026         Week 12 Year to date  Local authority    E92000001
#> 3266        2026         Week 12 Year to date  Local authority    E92000001
#> 3267        2026         Week 12 Year to date  Local authority    E92000001
#> 3268        2026         Week 12 Year to date  Local authority    E92000001
#> 3269        2026         Week 12 Year to date  Local authority    E92000001
#> 3270        2026         Week 12 Year to date  Local authority    E92000001
#> 3271        2026         Week 12 Year to date  Local authority    E92000001
#> 3272        2026         Week 12 Year to date  Local authority    E92000001
#> 3273        2026         Week 12 Year to date  Local authority    E92000001
#> 3274        2026         Week 12 Year to date  Local authority    E92000001
#> 3275        2026         Week 12 Year to date  Local authority    E92000001
#> 3276        2026         Week 12 Year to date  Local authority    E92000001
#> 3277        2026         Week 12 Year to date  Local authority    E92000001
#> 3278        2026         Week 12 Year to date  Local authority    E92000001
#> 3279        2026         Week 12 Year to date  Local authority    E92000001
#> 3280        2026         Week 12 Year to date  Local authority    E92000001
#> 3281        2026         Week 12 Year to date  Local authority    E92000001
#> 3282        2026         Week 12 Year to date  Local authority    E92000001
#> 3283        2026         Week 12 Year to date  Local authority    E92000001
#> 3284        2026         Week 12 Year to date  Local authority    E92000001
#> 3285        2026         Week 12 Year to date  Local authority    E92000001
#> 3286        2026         Week 12 Year to date  Local authority    E92000001
#> 3287        2026         Week 12 Year to date  Local authority    E92000001
#> 3288        2026         Week 12 Year to date  Local authority    E92000001
#> 3289        2026         Week 12 Year to date  Local authority    E92000001
#> 3290        2026         Week 12 Year to date  Local authority    E92000001
#> 3291        2026         Week 12 Year to date  Local authority    E92000001
#> 3292        2026         Week 12 Year to date         Regional    E92000001
#> 3293        2026         Week 12 Year to date         Regional    E92000001
#> 3294        2026         Week 12 Year to date         Regional    E92000001
#> 3295        2026         Week 12 Year to date         Regional    E92000001
#> 3296        2026         Week 12 Year to date  Local authority    E92000001
#> 3297        2026         Week 12 Year to date  Local authority    E92000001
#> 3298        2026         Week 12 Year to date  Local authority    E92000001
#> 3299        2026         Week 12 Year to date  Local authority    E92000001
#> 3300        2026         Week 12 Year to date  Local authority    E92000001
#> 3301        2026         Week 12 Year to date  Local authority    E92000001
#> 3302        2026         Week 12 Year to date  Local authority    E92000001
#> 3303        2026         Week 12 Year to date  Local authority    E92000001
#> 3304        2026         Week 12 Year to date  Local authority    E92000001
#> 3305        2026         Week 12 Year to date  Local authority    E92000001
#> 3306        2026         Week 12 Year to date  Local authority    E92000001
#> 3307        2026         Week 12 Year to date  Local authority    E92000001
#> 3308        2026         Week 12 Year to date  Local authority    E92000001
#> 3309        2026         Week 12 Year to date  Local authority    E92000001
#> 3310        2026         Week 12 Year to date  Local authority    E92000001
#> 3311        2026         Week 12 Year to date  Local authority    E92000001
#> 3312        2026         Week 12 Year to date  Local authority    E92000001
#> 3313        2026         Week 12 Year to date  Local authority    E92000001
#> 3314        2026         Week 12 Year to date  Local authority    E92000001
#> 3315        2026         Week 12 Year to date  Local authority    E92000001
#> 3316        2026         Week 12 Year to date  Local authority    E92000001
#> 3317        2026         Week 12 Year to date  Local authority    E92000001
#> 3318        2026         Week 12 Year to date  Local authority    E92000001
#> 3319        2026         Week 12 Year to date  Local authority    E92000001
#> 3320        2026         Week 12 Year to date  Local authority    E92000001
#> 3321        2026         Week 12 Year to date  Local authority    E92000001
#> 3322        2026         Week 12 Year to date  Local authority    E92000001
#> 3323        2026         Week 12 Year to date  Local authority    E92000001
#> 3324        2026         Week 12 Year to date  Local authority    E92000001
#> 3325        2026         Week 12 Year to date  Local authority    E92000001
#> 3326        2026         Week 12 Year to date  Local authority    E92000001
#> 3327        2026         Week 12 Year to date  Local authority    E92000001
#> 3328        2026         Week 12 Year to date  Local authority    E92000001
#> 3329        2026         Week 12 Year to date  Local authority    E92000001
#> 3330        2026         Week 12 Year to date  Local authority    E92000001
#> 3331        2026         Week 12 Year to date  Local authority    E92000001
#> 3332        2026         Week 12 Year to date  Local authority    E92000001
#> 3333        2026         Week 12 Year to date  Local authority    E92000001
#> 3334        2026         Week 12 Year to date  Local authority    E92000001
#> 3335        2026         Week 12 Year to date  Local authority    E92000001
#> 3336        2026         Week 12 Year to date  Local authority    E92000001
#> 3337        2026         Week 12 Year to date  Local authority    E92000001
#> 3338        2026         Week 12 Year to date  Local authority    E92000001
#> 3339        2026         Week 12 Year to date  Local authority    E92000001
#> 3340        2026         Week 12 Year to date  Local authority    E92000001
#> 3341        2026         Week 12 Year to date  Local authority    E92000001
#> 3342        2026         Week 12 Year to date  Local authority    E92000001
#> 3343        2026         Week 12 Year to date  Local authority    E92000001
#> 3344        2026         Week 12 Year to date  Local authority    E92000001
#> 3345        2026         Week 12 Year to date  Local authority    E92000001
#> 3346        2026         Week 12 Year to date  Local authority    E92000001
#> 3347        2026         Week 12 Year to date  Local authority    E92000001
#> 3348        2026         Week 12 Year to date  Local authority    E92000001
#> 3349        2026         Week 12 Year to date  Local authority    E92000001
#> 3350        2026         Week 12 Year to date  Local authority    E92000001
#> 3351        2026         Week 12 Year to date  Local authority    E92000001
#> 3352        2026         Week 12 Year to date  Local authority    E92000001
#> 3353        2026         Week 12 Year to date  Local authority    E92000001
#> 3354        2026         Week 12 Year to date  Local authority    E92000001
#> 3355        2026         Week 12 Year to date  Local authority    E92000001
#> 3356        2026         Week 12 Year to date  Local authority    E92000001
#> 3357        2026         Week 12 Year to date  Local authority    E92000001
#> 3358        2026         Week 12 Year to date  Local authority    E92000001
#> 3359        2026         Week 12 Year to date  Local authority    E92000001
#> 3360        2026         Week 12 Year to date  Local authority    E92000001
#> 3361        2026         Week 12 Year to date  Local authority    E92000001
#> 3362        2026         Week 12 Year to date  Local authority    E92000001
#> 3363        2026         Week 12 Year to date  Local authority    E92000001
#> 3364        2026         Week 12 Year to date  Local authority    E92000001
#> 3365        2026         Week 12 Year to date  Local authority    E92000001
#> 3366        2026         Week 12 Year to date  Local authority    E92000001
#> 3367        2026         Week 12 Year to date  Local authority    E92000001
#> 3368        2026         Week 12 Year to date  Local authority    E92000001
#> 3369        2026         Week 12 Year to date  Local authority    E92000001
#> 3370        2026         Week 12 Year to date  Local authority    E92000001
#> 3371        2026         Week 12 Year to date  Local authority    E92000001
#> 3372        2026         Week 12 Year to date  Local authority    E92000001
#> 3373        2026         Week 12 Year to date  Local authority    E92000001
#> 3374        2026         Week 12 Year to date  Local authority    E92000001
#> 3375        2026         Week 12 Year to date  Local authority    E92000001
#> 3376        2026         Week 12 Year to date  Local authority    E92000001
#> 3377        2026         Week 12 Year to date  Local authority    E92000001
#> 3378        2026         Week 12 Year to date  Local authority    E92000001
#> 3379        2026         Week 12 Year to date  Local authority    E92000001
#> 3380        2026         Week 12 Year to date  Local authority    E92000001
#> 3381        2026         Week 12 Year to date  Local authority    E92000001
#> 3382        2026         Week 12 Year to date  Local authority    E92000001
#> 3383        2026         Week 12 Year to date  Local authority    E92000001
#> 3384        2026         Week 12 Year to date  Local authority    E92000001
#> 3385        2026         Week 12 Year to date  Local authority    E92000001
#> 3386        2026         Week 12 Year to date  Local authority    E92000001
#> 3387        2026         Week 12 Year to date  Local authority    E92000001
#> 3388        2026         Week 12 Year to date  Local authority    E92000001
#> 3389        2026         Week 12 Year to date  Local authority    E92000001
#> 3390        2026         Week 12 Year to date  Local authority    E92000001
#> 3391        2026         Week 12 Year to date  Local authority    E92000001
#> 3392        2026         Week 12 Year to date         Regional    E92000001
#> 3393        2026         Week 12 Year to date         Regional    E92000001
#> 3394        2026         Week 12 Year to date         Regional    E92000001
#> 3395        2026         Week 12 Year to date         Regional    E92000001
#> 3396        2026         Week 12 Year to date  Local authority    E92000001
#> 3397        2026         Week 12 Year to date  Local authority    E92000001
#> 3398        2026         Week 12 Year to date  Local authority    E92000001
#> 3399        2026         Week 12 Year to date  Local authority    E92000001
#> 3400        2026         Week 12 Year to date  Local authority    E92000001
#> 3401        2026         Week 12 Year to date  Local authority    E92000001
#> 3402        2026         Week 12 Year to date  Local authority    E92000001
#> 3403        2026         Week 12 Year to date  Local authority    E92000001
#> 3404        2026         Week 12 Year to date  Local authority    E92000001
#> 3405        2026         Week 12 Year to date  Local authority    E92000001
#> 3406        2026         Week 12 Year to date  Local authority    E92000001
#> 3407        2026         Week 12 Year to date  Local authority    E92000001
#> 3408        2026         Week 12 Year to date  Local authority    E92000001
#> 3409        2026         Week 12 Year to date  Local authority    E92000001
#> 3410        2026         Week 12 Year to date  Local authority    E92000001
#> 3411        2026         Week 12 Year to date  Local authority    E92000001
#> 3412        2026         Week 12 Year to date  Local authority    E92000001
#> 3413        2026         Week 12 Year to date  Local authority    E92000001
#> 3414        2026         Week 12 Year to date  Local authority    E92000001
#> 3415        2026         Week 12 Year to date  Local authority    E92000001
#> 3416        2026         Week 12 Year to date  Local authority    E92000001
#> 3417        2026         Week 12 Year to date  Local authority    E92000001
#> 3418        2026         Week 12 Year to date  Local authority    E92000001
#> 3419        2026         Week 12 Year to date  Local authority    E92000001
#> 3420        2026         Week 12 Year to date  Local authority    E92000001
#> 3421        2026         Week 12 Year to date  Local authority    E92000001
#> 3422        2026         Week 12 Year to date  Local authority    E92000001
#> 3423        2026         Week 12 Year to date  Local authority    E92000001
#> 3424        2026         Week 12 Year to date  Local authority    E92000001
#> 3425        2026         Week 12 Year to date  Local authority    E92000001
#> 3426        2026         Week 12 Year to date  Local authority    E92000001
#> 3427        2026         Week 12 Year to date  Local authority    E92000001
#> 3428        2026         Week 12 Year to date  Local authority    E92000001
#> 3429        2026         Week 12 Year to date  Local authority    E92000001
#> 3430        2026         Week 12 Year to date  Local authority    E92000001
#> 3431        2026         Week 12 Year to date  Local authority    E92000001
#> 3432        2026         Week 12 Year to date  Local authority    E92000001
#> 3433        2026         Week 12 Year to date  Local authority    E92000001
#> 3434        2026         Week 12 Year to date  Local authority    E92000001
#> 3435        2026         Week 12 Year to date  Local authority    E92000001
#> 3436        2026         Week 12 Year to date  Local authority    E92000001
#> 3437        2026         Week 12 Year to date  Local authority    E92000001
#> 3438        2026         Week 12 Year to date  Local authority    E92000001
#> 3439        2026         Week 12 Year to date  Local authority    E92000001
#> 3440        2026         Week 12 Year to date  Local authority    E92000001
#> 3441        2026         Week 12 Year to date  Local authority    E92000001
#> 3442        2026         Week 12 Year to date  Local authority    E92000001
#> 3443        2026         Week 12 Year to date  Local authority    E92000001
#> 3444        2026         Week 12 Year to date  Local authority    E92000001
#> 3445        2026         Week 12 Year to date  Local authority    E92000001
#> 3446        2026         Week 12 Year to date  Local authority    E92000001
#> 3447        2026         Week 12 Year to date  Local authority    E92000001
#> 3448        2026         Week 12 Year to date  Local authority    E92000001
#> 3449        2026         Week 12 Year to date  Local authority    E92000001
#> 3450        2026         Week 12 Year to date  Local authority    E92000001
#> 3451        2026         Week 12 Year to date  Local authority    E92000001
#> 3452        2026         Week 12 Year to date  Local authority    E92000001
#> 3453        2026         Week 12 Year to date  Local authority    E92000001
#> 3454        2026         Week 12 Year to date  Local authority    E92000001
#> 3455        2026         Week 12 Year to date  Local authority    E92000001
#> 3456        2026         Week 12 Year to date         Regional    E92000001
#> 3457        2026         Week 12 Year to date         Regional    E92000001
#> 3458        2026         Week 12 Year to date         Regional    E92000001
#> 3459        2026         Week 12 Year to date         Regional    E92000001
#> 3460        2026         Week 12 Year to date  Local authority    E92000001
#> 3461        2026         Week 12 Year to date  Local authority    E92000001
#> 3462        2026         Week 12 Year to date  Local authority    E92000001
#> 3463        2026         Week 12 Year to date  Local authority    E92000001
#> 3464        2026         Week 12 Year to date  Local authority    E92000001
#> 3465        2026         Week 12 Year to date  Local authority    E92000001
#> 3466        2026         Week 12 Year to date  Local authority    E92000001
#> 3467        2026         Week 12 Year to date  Local authority    E92000001
#> 3468        2026         Week 12 Year to date  Local authority    E92000001
#> 3469        2026         Week 12 Year to date  Local authority    E92000001
#> 3470        2026         Week 12 Year to date  Local authority    E92000001
#> 3471        2026         Week 12 Year to date  Local authority    E92000001
#> 3472        2026         Week 12 Year to date  Local authority    E92000001
#> 3473        2026         Week 12 Year to date  Local authority    E92000001
#> 3474        2026         Week 12 Year to date  Local authority    E92000001
#> 3475        2026         Week 12 Year to date  Local authority    E92000001
#> 3476        2026         Week 12 Year to date  Local authority    E92000001
#> 3477        2026         Week 12 Year to date  Local authority    E92000001
#> 3478        2026         Week 12 Year to date  Local authority    E92000001
#> 3479        2026         Week 12 Year to date  Local authority    E92000001
#> 3480        2026         Week 12 Year to date  Local authority    E92000001
#> 3481        2026         Week 12 Year to date  Local authority    E92000001
#> 3482        2026         Week 12 Year to date  Local authority    E92000001
#> 3483        2026         Week 12 Year to date  Local authority    E92000001
#> 3484        2026         Week 12 Year to date  Local authority    E92000001
#> 3485        2026         Week 12 Year to date  Local authority    E92000001
#> 3486        2026         Week 12 Year to date  Local authority    E92000001
#> 3487        2026         Week 12 Year to date  Local authority    E92000001
#> 3488        2026         Week 12 Year to date  Local authority    E92000001
#> 3489        2026         Week 12 Year to date  Local authority    E92000001
#> 3490        2026         Week 12 Year to date  Local authority    E92000001
#> 3491        2026         Week 12 Year to date  Local authority    E92000001
#> 3492        2026         Week 12 Year to date  Local authority    E92000001
#> 3493        2026         Week 12 Year to date  Local authority    E92000001
#> 3494        2026         Week 12 Year to date  Local authority    E92000001
#> 3495        2026         Week 12 Year to date  Local authority    E92000001
#> 3496        2026         Week 12 Year to date  Local authority    E92000001
#> 3497        2026         Week 12 Year to date  Local authority    E92000001
#> 3498        2026         Week 12 Year to date  Local authority    E92000001
#> 3499        2026         Week 12 Year to date         Regional    E92000001
#> 3500        2026         Week 12 Year to date         Regional    E92000001
#> 3501        2026         Week 12 Year to date         Regional    E92000001
#> 3502        2026         Week 12 Year to date         Regional    E92000001
#> 3503        2026         Week 12 Year to date  Local authority    E92000001
#> 3504        2026         Week 12 Year to date  Local authority    E92000001
#> 3505        2026         Week 12 Year to date  Local authority    E92000001
#> 3506        2026         Week 12 Year to date  Local authority    E92000001
#> 3507        2026         Week 12 Year to date  Local authority    E92000001
#> 3508        2026         Week 12 Year to date  Local authority    E92000001
#> 3509        2026         Week 12 Year to date  Local authority    E92000001
#> 3510        2026         Week 12 Year to date  Local authority    E92000001
#> 3511        2026         Week 12 Year to date  Local authority    E92000001
#> 3512        2026         Week 12 Year to date  Local authority    E92000001
#> 3513        2026         Week 12 Year to date  Local authority    E92000001
#> 3514        2026         Week 12 Year to date  Local authority    E92000001
#> 3515        2026         Week 12 Year to date  Local authority    E92000001
#> 3516        2026         Week 12 Year to date  Local authority    E92000001
#> 3517        2026         Week 12 Year to date  Local authority    E92000001
#> 3518        2026         Week 12 Year to date  Local authority    E92000001
#> 3519        2026         Week 12 Year to date  Local authority    E92000001
#> 3520        2026         Week 12 Year to date  Local authority    E92000001
#> 3521        2026         Week 12 Year to date  Local authority    E92000001
#> 3522        2026         Week 12 Year to date  Local authority    E92000001
#> 3523        2026         Week 12 Year to date  Local authority    E92000001
#> 3524        2026         Week 12 Year to date  Local authority    E92000001
#> 3525        2026         Week 12 Year to date  Local authority    E92000001
#> 3526        2026         Week 12 Year to date  Local authority    E92000001
#> 3527        2026         Week 12 Year to date  Local authority    E92000001
#> 3528        2026         Week 12 Year to date  Local authority    E92000001
#> 3529        2026         Week 12 Year to date  Local authority    E92000001
#> 3530        2026         Week 12 Year to date  Local authority    E92000001
#> 3531        2026         Week 12 Year to date  Local authority    E92000001
#> 3532        2026         Week 12 Year to date  Local authority    E92000001
#> 3533        2026         Week 12 Year to date  Local authority    E92000001
#> 3534        2026         Week 12 Year to date  Local authority    E92000001
#> 3535        2026         Week 12 Year to date  Local authority    E92000001
#> 3536        2026         Week 12 Year to date  Local authority    E92000001
#> 3537        2026         Week 12 Year to date  Local authority    E92000001
#> 3538        2026         Week 12 Year to date  Local authority    E92000001
#> 3539        2026         Week 12 Year to date  Local authority    E92000001
#> 3540        2026         Week 12 Year to date  Local authority    E92000001
#> 3541        2026         Week 12 Year to date  Local authority    E92000001
#> 3542        2026         Week 12 Year to date  Local authority    E92000001
#> 3543        2026         Week 12 Year to date  Local authority    E92000001
#> 3544        2026         Week 12 Year to date  Local authority    E92000001
#> 3545        2026         Week 12 Year to date  Local authority    E92000001
#> 3546        2026         Week 12 Year to date  Local authority    E92000001
#> 3547        2026         Week 12 Year to date  Local authority    E92000001
#> 3548        2026         Week 12 Year to date  Local authority    E92000001
#> 3549        2026         Week 12 Year to date  Local authority    E92000001
#> 3550        2026         Week 12 Year to date  Local authority    E92000001
#> 3551        2026         Week 12 Year to date  Local authority    E92000001
#> 3552        2026         Week 12 Year to date  Local authority    E92000001
#> 3553        2026         Week 12 Year to date  Local authority    E92000001
#> 3554        2026         Week 12 Year to date  Local authority    E92000001
#> 3555        2026         Week 12 Year to date  Local authority    E92000001
#> 3556        2026         Week 12 Year to date  Local authority    E92000001
#> 3557        2026         Week 12 Year to date  Local authority    E92000001
#> 3558        2026         Week 12 Year to date  Local authority    E92000001
#> 3559        2026         Week 12 Year to date         Regional    E92000001
#> 3560        2026         Week 12 Year to date         Regional    E92000001
#> 3561        2026         Week 12 Year to date         Regional    E92000001
#> 3562        2026         Week 12 Year to date         Regional    E92000001
#> 3563        2026         Week 12 Year to date  Local authority    E92000001
#> 3564        2026         Week 12 Year to date  Local authority    E92000001
#> 3565        2026         Week 12 Year to date  Local authority    E92000001
#> 3566        2026         Week 12 Year to date  Local authority    E92000001
#> 3567        2026         Week 12 Year to date  Local authority    E92000001
#> 3568        2026         Week 12 Year to date  Local authority    E92000001
#> 3569        2026         Week 12 Year to date  Local authority    E92000001
#> 3570        2026         Week 12 Year to date  Local authority    E92000001
#> 3571        2026         Week 12 Year to date  Local authority    E92000001
#> 3572        2026         Week 12 Year to date  Local authority    E92000001
#> 3573        2026         Week 12 Year to date  Local authority    E92000001
#> 3574        2026         Week 12 Year to date  Local authority    E92000001
#> 3575        2026         Week 12 Year to date  Local authority    E92000001
#> 3576        2026         Week 12 Year to date  Local authority    E92000001
#> 3577        2026         Week 12 Year to date  Local authority    E92000001
#> 3578        2026         Week 12 Year to date  Local authority    E92000001
#> 3579        2026         Week 12 Year to date  Local authority    E92000001
#> 3580        2026         Week 12 Year to date  Local authority    E92000001
#> 3581        2026         Week 12 Year to date  Local authority    E92000001
#> 3582        2026         Week 12 Year to date  Local authority    E92000001
#> 3583        2026         Week 12 Year to date  Local authority    E92000001
#> 3584        2026         Week 12 Year to date  Local authority    E92000001
#> 3585        2026         Week 12 Year to date  Local authority    E92000001
#> 3586        2026         Week 12 Year to date  Local authority    E92000001
#> 3587        2026         Week 12 Year to date  Local authority    E92000001
#> 3588        2026         Week 12 Year to date  Local authority    E92000001
#> 3589        2026         Week 12 Year to date  Local authority    E92000001
#> 3590        2026         Week 12 Year to date  Local authority    E92000001
#> 3591        2026         Week 12 Year to date  Local authority    E92000001
#> 3592        2026         Week 12 Year to date  Local authority    E92000001
#> 3593        2026         Week 12 Year to date  Local authority    E92000001
#> 3594        2026         Week 12 Year to date  Local authority    E92000001
#> 3595        2026         Week 12 Year to date  Local authority    E92000001
#> 3596        2026         Week 12 Year to date  Local authority    E92000001
#> 3597        2026         Week 12 Year to date  Local authority    E92000001
#> 3598        2026         Week 12 Year to date  Local authority    E92000001
#> 3599        2026         Week 12 Year to date  Local authority    E92000001
#> 3600        2026         Week 12 Year to date  Local authority    E92000001
#> 3601        2026         Week 12 Year to date  Local authority    E92000001
#> 3602        2026         Week 12 Year to date  Local authority    E92000001
#> 3603        2026         Week 12 Year to date  Local authority    E92000001
#> 3604        2026         Week 12 Year to date  Local authority    E92000001
#> 3605        2026         Week 12 Year to date  Local authority    E92000001
#> 3606        2026         Week 12 Year to date  Local authority    E92000001
#> 3607        2026         Week 12 Year to date         Regional    E92000001
#> 3608        2026         Week 12 Year to date         Regional    E92000001
#> 3609        2026         Week 12 Year to date         Regional    E92000001
#> 3610        2026         Week 12 Year to date         Regional    E92000001
#> 3611        2026         Week 12 Year to date  Local authority    E92000001
#> 3612        2026         Week 12 Year to date  Local authority    E92000001
#> 3613        2026         Week 12 Year to date  Local authority    E92000001
#> 3614        2026         Week 12 Year to date  Local authority    E92000001
#> 3615        2026         Week 12 Year to date  Local authority    E92000001
#> 3616        2026         Week 12 Year to date  Local authority    E92000001
#> 3617        2026         Week 12 Year to date  Local authority    E92000001
#> 3618        2026         Week 12 Year to date  Local authority    E92000001
#> 3619        2026         Week 12 Year to date  Local authority    E92000001
#> 3620        2026         Week 12 Year to date  Local authority    E92000001
#> 3621        2026         Week 12 Year to date  Local authority    E92000001
#> 3622        2026         Week 12 Year to date  Local authority    E92000001
#> 3623        2026         Week 12 Year to date  Local authority    E92000001
#> 3624        2026         Week 12 Year to date  Local authority    E92000001
#> 3625        2026         Week 12 Year to date  Local authority    E92000001
#> 3626        2026         Week 12 Year to date  Local authority    E92000001
#> 3627        2026         Week 12 Year to date  Local authority    E92000001
#> 3628        2026         Week 12 Year to date  Local authority    E92000001
#> 3629        2026         Week 12 Year to date  Local authority    E92000001
#> 3630        2026         Week 12 Year to date  Local authority    E92000001
#> 3631        2026         Week 12 Year to date  Local authority    E92000001
#> 3632        2026         Week 12 Year to date  Local authority    E92000001
#> 3633        2026         Week 12 Year to date  Local authority    E92000001
#> 3634        2026         Week 12 Year to date  Local authority    E92000001
#> 3635        2026         Week 12 Year to date  Local authority    E92000001
#> 3636        2026         Week 12 Year to date  Local authority    E92000001
#> 3637        2026         Week 12 Year to date  Local authority    E92000001
#> 3638        2026         Week 12 Year to date  Local authority    E92000001
#> 3639        2026         Week 12 Year to date  Local authority    E92000001
#> 3640        2026         Week 12 Year to date  Local authority    E92000001
#> 3641        2026         Week 12 Year to date  Local authority    E92000001
#> 3642        2026         Week 12 Year to date  Local authority    E92000001
#> 3643        2026         Week 12 Year to date  Local authority    E92000001
#> 3644        2026         Week 12 Year to date  Local authority    E92000001
#> 3645        2026         Week 12 Year to date  Local authority    E92000001
#> 3646        2026         Week 12 Year to date  Local authority    E92000001
#> 3647        2026         Week 12 Year to date  Local authority    E92000001
#> 3648        2026         Week 12 Year to date  Local authority    E92000001
#> 3649        2026         Week 12 Year to date  Local authority    E92000001
#> 3650        2026         Week 12 Year to date  Local authority    E92000001
#> 3651        2026         Week 12 Year to date  Local authority    E92000001
#> 3652        2026         Week 12 Year to date  Local authority    E92000001
#> 3653        2026         Week 12 Year to date  Local authority    E92000001
#> 3654        2026         Week 12 Year to date  Local authority    E92000001
#> 3655        2026         Week 12 Year to date  Local authority    E92000001
#> 3656        2026         Week 12 Year to date  Local authority    E92000001
#> 3657        2026         Week 12 Year to date  Local authority    E92000001
#> 3658        2026         Week 12 Year to date  Local authority    E92000001
#> 3659        2026         Week 12 Year to date  Local authority    E92000001
#> 3660        2026         Week 12 Year to date  Local authority    E92000001
#> 3661        2026         Week 12 Year to date  Local authority    E92000001
#> 3662        2026         Week 12 Year to date  Local authority    E92000001
#> 3663        2026         Week 12 Year to date  Local authority    E92000001
#> 3664        2026         Week 12 Year to date  Local authority    E92000001
#> 3665        2026         Week 12 Year to date  Local authority    E92000001
#> 3666        2026         Week 12 Year to date  Local authority    E92000001
#> 3667        2026         Week 12 Year to date  Local authority    E92000001
#> 3668        2026         Week 12 Year to date  Local authority    E92000001
#> 3669        2026         Week 12 Year to date  Local authority    E92000001
#> 3670        2026         Week 12 Year to date  Local authority    E92000001
#> 3671        2026         Week 12 Year to date  Local authority    E92000001
#> 3672        2026         Week 12 Year to date  Local authority    E92000001
#> 3673        2026         Week 12 Year to date  Local authority    E92000001
#> 3674        2026         Week 12 Year to date  Local authority    E92000001
#> 3675        2026         Week 12 Year to date  Local authority    E92000001
#> 3676        2026         Week 12 Year to date  Local authority    E92000001
#> 3677        2026         Week 12 Year to date  Local authority    E92000001
#> 3678        2026         Week 12 Year to date  Local authority    E92000001
#> 3679        2026         Week 12 Year to date  Local authority    E92000001
#> 3680        2026         Week 12 Year to date  Local authority    E92000001
#> 3681        2026         Week 12 Year to date  Local authority    E92000001
#> 3682        2026         Week 12 Year to date  Local authority    E92000001
#> 3683        2026         Week 12 Year to date  Local authority    E92000001
#> 3684        2026         Week 12 Year to date  Local authority    E92000001
#> 3685        2026         Week 12 Year to date  Local authority    E92000001
#> 3686        2026         Week 12 Year to date  Local authority    E92000001
#> 3687        2026         Week 12 Year to date  Local authority    E92000001
#> 3688        2026         Week 12 Year to date  Local authority    E92000001
#> 3689        2026         Week 12 Year to date  Local authority    E92000001
#> 3690        2026         Week 12 Year to date  Local authority    E92000001
#> 3691        2026         Week 12 Year to date  Local authority    E92000001
#> 3692        2026         Week 12 Year to date  Local authority    E92000001
#> 3693        2026         Week 12 Year to date  Local authority    E92000001
#> 3694        2026         Week 12 Year to date  Local authority    E92000001
#> 3695        2026         Week 12 Year to date  Local authority    E92000001
#> 3696        2026         Week 12 Year to date  Local authority    E92000001
#> 3697        2026         Week 12 Year to date  Local authority    E92000001
#> 3698        2026         Week 12 Year to date  Local authority    E92000001
#> 3699        2026         Week 12 Year to date  Local authority    E92000001
#> 3700        2026         Week 12 Year to date  Local authority    E92000001
#> 3701        2026         Week 12 Year to date  Local authority    E92000001
#> 3702        2026         Week 12 Year to date  Local authority    E92000001
#> 3703        2026         Week 12 Year to date  Local authority    E92000001
#> 3704        2026         Week 12 Year to date  Local authority    E92000001
#> 3705        2026         Week 12 Year to date  Local authority    E92000001
#> 3706        2026         Week 12 Year to date  Local authority    E92000001
#> 3707        2026         Week 12 Year to date  Local authority    E92000001
#> 3708        2026         Week 12 Year to date  Local authority    E92000001
#> 3709        2026         Week 12 Year to date  Local authority    E92000001
#> 3710        2026         Week 12 Year to date  Local authority    E92000001
#> 3711        2026         Week 12 Year to date  Local authority    E92000001
#> 3712        2026         Week 12 Year to date  Local authority    E92000001
#> 3713        2026         Week 12 Year to date  Local authority    E92000001
#> 3714        2026         Week 12 Year to date  Local authority    E92000001
#> 3715        2026         Week 12 Year to date  Local authority    E92000001
#> 3716        2026         Week 12 Year to date  Local authority    E92000001
#> 3717        2026         Week 12 Year to date  Local authority    E92000001
#> 3718        2026         Week 12 Year to date  Local authority    E92000001
#> 3719        2026         Week 12 Year to date  Local authority    E92000001
#> 3720        2026         Week 12 Year to date  Local authority    E92000001
#> 3721        2026         Week 12 Year to date  Local authority    E92000001
#> 3722        2026         Week 12 Year to date  Local authority    E92000001
#> 3723        2026         Week 12 Year to date  Local authority    E92000001
#> 3724        2026         Week 12 Year to date  Local authority    E92000001
#> 3725        2026         Week 12 Year to date  Local authority    E92000001
#> 3726        2026         Week 12 Year to date  Local authority    E92000001
#> 3727        2026         Week 12 Year to date  Local authority    E92000001
#> 3728        2026         Week 12 Year to date  Local authority    E92000001
#> 3729        2026         Week 12 Year to date  Local authority    E92000001
#> 3730        2026         Week 12 Year to date  Local authority    E92000001
#> 3731        2026         Week 12 Year to date  Local authority    E92000001
#> 3732        2026         Week 12 Year to date  Local authority    E92000001
#> 3733        2026         Week 12 Year to date  Local authority    E92000001
#> 3734        2026         Week 12 Year to date  Local authority    E92000001
#> 3735        2026         Week 12 Year to date  Local authority    E92000001
#> 3736        2026         Week 12 Year to date  Local authority    E92000001
#> 3737        2026         Week 12 Year to date  Local authority    E92000001
#> 3738        2026         Week 12 Year to date  Local authority    E92000001
#> 3739        2026         Week 12 Year to date  Local authority    E92000001
#> 3740        2026         Week 12 Year to date  Local authority    E92000001
#> 3741        2026         Week 12 Year to date         Regional    E92000001
#> 3742        2026         Week 12 Year to date         Regional    E92000001
#> 3743        2026         Week 12 Year to date         Regional    E92000001
#> 3744        2026         Week 12 Year to date         Regional    E92000001
#> 3745        2026         Week 12 Year to date  Local authority    E92000001
#> 3746        2026         Week 12 Year to date  Local authority    E92000001
#> 3747        2026         Week 12 Year to date  Local authority    E92000001
#> 3748        2026         Week 12 Year to date  Local authority    E92000001
#> 3749        2026         Week 12 Year to date  Local authority    E92000001
#> 3750        2026         Week 12 Year to date  Local authority    E92000001
#> 3751        2026         Week 12 Year to date  Local authority    E92000001
#> 3752        2026         Week 12 Year to date  Local authority    E92000001
#> 3753        2026         Week 12 Year to date  Local authority    E92000001
#> 3754        2026         Week 12 Year to date  Local authority    E92000001
#> 3755        2026         Week 12 Year to date  Local authority    E92000001
#> 3756        2026         Week 12 Year to date  Local authority    E92000001
#> 3757        2026         Week 12 Year to date  Local authority    E92000001
#> 3758        2026         Week 12 Year to date  Local authority    E92000001
#> 3759        2026         Week 12 Year to date  Local authority    E92000001
#> 3760        2026         Week 12 Year to date  Local authority    E92000001
#> 3761        2026         Week 12 Year to date  Local authority    E92000001
#> 3762        2026         Week 12 Year to date  Local authority    E92000001
#> 3763        2026         Week 12 Year to date  Local authority    E92000001
#> 3764        2026         Week 12 Year to date  Local authority    E92000001
#> 3765        2026         Week 12 Year to date  Local authority    E92000001
#> 3766        2026         Week 12 Year to date  Local authority    E92000001
#> 3767        2026         Week 12 Year to date  Local authority    E92000001
#> 3768        2026         Week 12 Year to date  Local authority    E92000001
#> 3769        2026         Week 12 Year to date  Local authority    E92000001
#> 3770        2026         Week 12 Year to date  Local authority    E92000001
#> 3771        2026         Week 12 Year to date  Local authority    E92000001
#> 3772        2026         Week 12 Year to date  Local authority    E92000001
#> 3773        2026         Week 12 Year to date  Local authority    E92000001
#> 3774        2026         Week 12 Year to date  Local authority    E92000001
#> 3775        2026         Week 12 Year to date  Local authority    E92000001
#> 3776        2026         Week 12 Year to date  Local authority    E92000001
#> 3777        2026         Week 12 Year to date  Local authority    E92000001
#> 3778        2026         Week 12 Year to date  Local authority    E92000001
#> 3779        2026         Week 12 Year to date  Local authority    E92000001
#> 3780        2026         Week 12 Year to date  Local authority    E92000001
#> 3781        2026         Week 12 Year to date  Local authority    E92000001
#> 3782        2026         Week 12 Year to date  Local authority    E92000001
#> 3783        2026         Week 12 Year to date  Local authority    E92000001
#> 3784        2026         Week 12 Year to date  Local authority    E92000001
#> 3785        2026         Week 12 Year to date  Local authority    E92000001
#> 3786        2026         Week 12 Year to date  Local authority    E92000001
#> 3787        2026         Week 12 Year to date  Local authority    E92000001
#> 3788        2026         Week 12 Year to date  Local authority    E92000001
#> 3789        2026         Week 12 Year to date  Local authority    E92000001
#> 3790        2026         Week 12 Year to date  Local authority    E92000001
#> 3791        2026         Week 12 Year to date  Local authority    E92000001
#> 3792        2026         Week 12 Year to date  Local authority    E92000001
#> 3793        2026         Week 12 Year to date  Local authority    E92000001
#> 3794        2026         Week 12 Year to date  Local authority    E92000001
#> 3795        2026         Week 12 Year to date  Local authority    E92000001
#> 3796        2026         Week 12 Year to date  Local authority    E92000001
#> 3797        2026         Week 12 Year to date  Local authority    E92000001
#> 3798        2026         Week 12 Year to date  Local authority    E92000001
#> 3799        2026         Week 12 Year to date  Local authority    E92000001
#> 3800        2026         Week 12 Year to date  Local authority    E92000001
#> 3801        2026         Week 12 Year to date  Local authority    E92000001
#> 3802        2026         Week 12 Year to date  Local authority    E92000001
#> 3803        2026         Week 12 Year to date  Local authority    E92000001
#> 3804        2026         Week 12 Year to date  Local authority    E92000001
#> 3805        2026         Week 12 Year to date  Local authority    E92000001
#> 3806        2026         Week 12 Year to date  Local authority    E92000001
#> 3807        2026         Week 12 Year to date  Local authority    E92000001
#> 3808        2026         Week 12 Year to date  Local authority    E92000001
#> 3809        2026         Week 12 Year to date  Local authority    E92000001
#> 3810        2026         Week 12 Year to date  Local authority    E92000001
#> 3811        2026         Week 12 Year to date  Local authority    E92000001
#> 3812        2026         Week 12 Year to date  Local authority    E92000001
#> 3813        2026         Week 12 Year to date  Local authority    E92000001
#> 3814        2026         Week 12 Year to date  Local authority    E92000001
#> 3815        2026         Week 12 Year to date  Local authority    E92000001
#> 3816        2026         Week 12 Year to date  Local authority    E92000001
#> 3817        2026         Week 12 Year to date  Local authority    E92000001
#> 3818        2026         Week 12 Year to date  Local authority    E92000001
#> 3819        2026         Week 12 Year to date  Local authority    E92000001
#> 3820        2026         Week 12 Year to date  Local authority    E92000001
#> 3821        2026         Week 12 Year to date         Regional    E92000001
#> 3822        2026         Week 12 Year to date         Regional    E92000001
#> 3823        2026         Week 12 Year to date         Regional    E92000001
#> 3824        2026         Week 12 Year to date         Regional    E92000001
#> 3825        2026         Week 12 Year to date  Local authority    E92000001
#> 3826        2026         Week 12 Year to date  Local authority    E92000001
#> 3827        2026         Week 12 Year to date  Local authority    E92000001
#> 3828        2026         Week 12 Year to date  Local authority    E92000001
#> 3829        2026         Week 12 Year to date  Local authority    E92000001
#> 3830        2026         Week 12 Year to date  Local authority    E92000001
#> 3831        2026         Week 12 Year to date  Local authority    E92000001
#> 3832        2026         Week 12 Year to date  Local authority    E92000001
#> 3833        2026         Week 12 Year to date  Local authority    E92000001
#> 3834        2026         Week 12 Year to date  Local authority    E92000001
#> 3835        2026         Week 12 Year to date  Local authority    E92000001
#> 3836        2026         Week 12 Year to date  Local authority    E92000001
#> 3837        2026         Week 12 Year to date  Local authority    E92000001
#> 3838        2026         Week 12 Year to date  Local authority    E92000001
#> 3839        2026         Week 12 Year to date  Local authority    E92000001
#> 3840        2026         Week 12 Year to date  Local authority    E92000001
#> 3841        2026         Week 12 Year to date  Local authority    E92000001
#> 3842        2026         Week 12 Year to date  Local authority    E92000001
#> 3843        2026         Week 12 Year to date  Local authority    E92000001
#> 3844        2026         Week 12 Year to date  Local authority    E92000001
#> 3845        2026         Week 12 Year to date  Local authority    E92000001
#> 3846        2026         Week 12 Year to date  Local authority    E92000001
#> 3847        2026         Week 12 Year to date  Local authority    E92000001
#> 3848        2026         Week 12 Year to date  Local authority    E92000001
#> 3849        2026         Week 12 Year to date  Local authority    E92000001
#> 3850        2026         Week 12 Year to date  Local authority    E92000001
#> 3851        2026         Week 12 Year to date  Local authority    E92000001
#> 3852        2026         Week 12 Year to date  Local authority    E92000001
#> 3853        2026         Week 12 Year to date  Local authority    E92000001
#> 3854        2026         Week 12 Year to date  Local authority    E92000001
#> 3855        2026         Week 12 Year to date  Local authority    E92000001
#> 3856        2026         Week 12 Year to date  Local authority    E92000001
#> 3857        2026         Week 12 Year to date  Local authority    E92000001
#> 3858        2026         Week 12 Year to date  Local authority    E92000001
#> 3859        2026         Week 12 Year to date  Local authority    E92000001
#> 3860        2026         Week 12 Year to date  Local authority    E92000001
#> 3861        2026         Week 12 Year to date  Local authority    E92000001
#> 3862        2026         Week 12 Year to date  Local authority    E92000001
#> 3863        2026         Week 12 Year to date  Local authority    E92000001
#> 3864        2026         Week 12 Year to date  Local authority    E92000001
#> 3865        2026         Week 12 Year to date  Local authority    E92000001
#> 3866        2026         Week 12 Year to date  Local authority    E92000001
#> 3867        2026         Week 12 Year to date  Local authority    E92000001
#> 3868        2026         Week 12 Year to date  Local authority    E92000001
#> 3869        2026         Week 12 Year to date  Local authority    E92000001
#> 3870        2026         Week 12 Year to date  Local authority    E92000001
#> 3871        2026         Week 12 Year to date  Local authority    E92000001
#> 3872        2026         Week 12 Year to date  Local authority    E92000001
#> 3873        2026         Week 12 Year to date  Local authority    E92000001
#> 3874        2026         Week 12 Year to date  Local authority    E92000001
#> 3875        2026         Week 12 Year to date  Local authority    E92000001
#> 3876        2026         Week 12 Year to date  Local authority    E92000001
#> 3877        2026         Week 12 Year to date  Local authority    E92000001
#> 3878        2026         Week 12 Year to date  Local authority    E92000001
#> 3879        2026         Week 12 Year to date  Local authority    E92000001
#> 3880        2026         Week 12 Year to date  Local authority    E92000001
#> 3881        2026         Week 12 Year to date  Local authority    E92000001
#> 3882        2026         Week 12 Year to date  Local authority    E92000001
#> 3883        2026         Week 10 Year to date         National    E92000001
#> 3884        2026         Week 10 Year to date         National    E92000001
#> 3885        2026         Week 10 Year to date         National    E92000001
#> 3886        2026         Week 10 Year to date         National    E92000001
#> 3887        2026         Week 10 Year to date         Regional    E92000001
#> 3888        2026         Week 10 Year to date         Regional    E92000001
#> 3889        2026         Week 10 Year to date         Regional    E92000001
#> 3890        2026         Week 10 Year to date         Regional    E92000001
#> 3891        2026         Week 10 Year to date  Local authority    E92000001
#> 3892        2026         Week 10 Year to date  Local authority    E92000001
#> 3893        2026         Week 10 Year to date  Local authority    E92000001
#> 3894        2026         Week 10 Year to date  Local authority    E92000001
#> 3895        2026         Week 10 Year to date  Local authority    E92000001
#> 3896        2026         Week 10 Year to date  Local authority    E92000001
#> 3897        2026         Week 10 Year to date  Local authority    E92000001
#> 3898        2026         Week 10 Year to date  Local authority    E92000001
#> 3899        2026         Week 10 Year to date  Local authority    E92000001
#> 3900        2026         Week 10 Year to date  Local authority    E92000001
#> 3901        2026         Week 10 Year to date  Local authority    E92000001
#> 3902        2026         Week 10 Year to date  Local authority    E92000001
#> 3903        2026         Week 10 Year to date  Local authority    E92000001
#> 3904        2026         Week 10 Year to date  Local authority    E92000001
#> 3905        2026         Week 10 Year to date  Local authority    E92000001
#> 3906        2026         Week 10 Year to date  Local authority    E92000001
#> 3907        2026         Week 10 Year to date  Local authority    E92000001
#> 3908        2026         Week 10 Year to date  Local authority    E92000001
#> 3909        2026         Week 10 Year to date  Local authority    E92000001
#> 3910        2026         Week 10 Year to date  Local authority    E92000001
#> 3911        2026         Week 10 Year to date  Local authority    E92000001
#> 3912        2026         Week 10 Year to date  Local authority    E92000001
#> 3913        2026         Week 10 Year to date  Local authority    E92000001
#> 3914        2026         Week 10 Year to date  Local authority    E92000001
#> 3915        2026         Week 10 Year to date  Local authority    E92000001
#> 3916        2026         Week 10 Year to date  Local authority    E92000001
#> 3917        2026         Week 10 Year to date  Local authority    E92000001
#> 3918        2026         Week 10 Year to date  Local authority    E92000001
#> 3919        2026         Week 10 Year to date  Local authority    E92000001
#> 3920        2026         Week 10 Year to date  Local authority    E92000001
#> 3921        2026         Week 10 Year to date  Local authority    E92000001
#> 3922        2026         Week 10 Year to date  Local authority    E92000001
#> 3923        2026         Week 10 Year to date  Local authority    E92000001
#> 3924        2026         Week 10 Year to date  Local authority    E92000001
#> 3925        2026         Week 10 Year to date  Local authority    E92000001
#> 3926        2026         Week 10 Year to date  Local authority    E92000001
#> 3927        2026         Week 10 Year to date  Local authority    E92000001
#> 3928        2026         Week 10 Year to date  Local authority    E92000001
#> 3929        2026         Week 10 Year to date  Local authority    E92000001
#> 3930        2026         Week 10 Year to date  Local authority    E92000001
#> 3931        2026         Week 10 Year to date  Local authority    E92000001
#> 3932        2026         Week 10 Year to date  Local authority    E92000001
#> 3933        2026         Week 10 Year to date  Local authority    E92000001
#> 3934        2026         Week 10 Year to date  Local authority    E92000001
#> 3935        2026         Week 10 Year to date  Local authority    E92000001
#> 3936        2026         Week 10 Year to date  Local authority    E92000001
#> 3937        2026         Week 10 Year to date  Local authority    E92000001
#> 3938        2026         Week 10 Year to date  Local authority    E92000001
#> 3939        2026         Week 10 Year to date         Regional    E92000001
#> 3940        2026         Week 10 Year to date         Regional    E92000001
#> 3941        2026         Week 10 Year to date         Regional    E92000001
#> 3942        2026         Week 10 Year to date         Regional    E92000001
#> 3943        2026         Week 10 Year to date  Local authority    E92000001
#> 3944        2026         Week 10 Year to date  Local authority    E92000001
#> 3945        2026         Week 10 Year to date  Local authority    E92000001
#> 3946        2026         Week 10 Year to date  Local authority    E92000001
#> 3947        2026         Week 10 Year to date  Local authority    E92000001
#> 3948        2026         Week 10 Year to date  Local authority    E92000001
#> 3949        2026         Week 10 Year to date  Local authority    E92000001
#> 3950        2026         Week 10 Year to date  Local authority    E92000001
#> 3951        2026         Week 10 Year to date  Local authority    E92000001
#> 3952        2026         Week 10 Year to date  Local authority    E92000001
#> 3953        2026         Week 10 Year to date  Local authority    E92000001
#> 3954        2026         Week 10 Year to date  Local authority    E92000001
#> 3955        2026         Week 10 Year to date  Local authority    E92000001
#> 3956        2026         Week 10 Year to date  Local authority    E92000001
#> 3957        2026         Week 10 Year to date  Local authority    E92000001
#> 3958        2026         Week 10 Year to date  Local authority    E92000001
#> 3959        2026         Week 10 Year to date  Local authority    E92000001
#> 3960        2026         Week 10 Year to date  Local authority    E92000001
#> 3961        2026         Week 10 Year to date  Local authority    E92000001
#> 3962        2026         Week 10 Year to date  Local authority    E92000001
#> 3963        2026         Week 10 Year to date  Local authority    E92000001
#> 3964        2026         Week 10 Year to date  Local authority    E92000001
#> 3965        2026         Week 10 Year to date  Local authority    E92000001
#> 3966        2026         Week 10 Year to date  Local authority    E92000001
#> 3967        2026         Week 10 Year to date  Local authority    E92000001
#> 3968        2026         Week 10 Year to date  Local authority    E92000001
#> 3969        2026         Week 10 Year to date  Local authority    E92000001
#> 3970        2026         Week 10 Year to date  Local authority    E92000001
#> 3971        2026         Week 10 Year to date  Local authority    E92000001
#> 3972        2026         Week 10 Year to date  Local authority    E92000001
#> 3973        2026         Week 10 Year to date  Local authority    E92000001
#> 3974        2026         Week 10 Year to date  Local authority    E92000001
#> 3975        2026         Week 10 Year to date  Local authority    E92000001
#> 3976        2026         Week 10 Year to date  Local authority    E92000001
#> 3977        2026         Week 10 Year to date  Local authority    E92000001
#> 3978        2026         Week 10 Year to date  Local authority    E92000001
#> 3979        2026         Week 10 Year to date  Local authority    E92000001
#> 3980        2026         Week 10 Year to date  Local authority    E92000001
#> 3981        2026         Week 10 Year to date  Local authority    E92000001
#> 3982        2026         Week 10 Year to date  Local authority    E92000001
#> 3983        2026         Week 10 Year to date  Local authority    E92000001
#> 3984        2026         Week 10 Year to date  Local authority    E92000001
#> 3985        2026         Week 10 Year to date  Local authority    E92000001
#> 3986        2026         Week 10 Year to date  Local authority    E92000001
#> 3987        2026         Week 10 Year to date  Local authority    E92000001
#> 3988        2026         Week 10 Year to date  Local authority    E92000001
#> 3989        2026         Week 10 Year to date  Local authority    E92000001
#> 3990        2026         Week 10 Year to date  Local authority    E92000001
#> 3991        2026         Week 10 Year to date  Local authority    E92000001
#> 3992        2026         Week 10 Year to date  Local authority    E92000001
#> 3993        2026         Week 10 Year to date  Local authority    E92000001
#> 3994        2026         Week 10 Year to date  Local authority    E92000001
#> 3995        2026         Week 10 Year to date  Local authority    E92000001
#> 3996        2026         Week 10 Year to date  Local authority    E92000001
#> 3997        2026         Week 10 Year to date  Local authority    E92000001
#> 3998        2026         Week 10 Year to date  Local authority    E92000001
#> 3999        2026         Week 10 Year to date  Local authority    E92000001
#> 4000        2026         Week 10 Year to date  Local authority    E92000001
#> 4001        2026         Week 10 Year to date  Local authority    E92000001
#> 4002        2026         Week 10 Year to date  Local authority    E92000001
#> 4003        2026         Week 10 Year to date  Local authority    E92000001
#> 4004        2026         Week 10 Year to date  Local authority    E92000001
#> 4005        2026         Week 10 Year to date  Local authority    E92000001
#> 4006        2026         Week 10 Year to date  Local authority    E92000001
#> 4007        2026         Week 10 Year to date  Local authority    E92000001
#> 4008        2026         Week 10 Year to date  Local authority    E92000001
#> 4009        2026         Week 10 Year to date  Local authority    E92000001
#> 4010        2026         Week 10 Year to date  Local authority    E92000001
#> 4011        2026         Week 10 Year to date  Local authority    E92000001
#> 4012        2026         Week 10 Year to date  Local authority    E92000001
#> 4013        2026         Week 10 Year to date  Local authority    E92000001
#> 4014        2026         Week 10 Year to date  Local authority    E92000001
#> 4015        2026         Week 10 Year to date  Local authority    E92000001
#> 4016        2026         Week 10 Year to date  Local authority    E92000001
#> 4017        2026         Week 10 Year to date  Local authority    E92000001
#> 4018        2026         Week 10 Year to date  Local authority    E92000001
#> 4019        2026         Week 10 Year to date  Local authority    E92000001
#> 4020        2026         Week 10 Year to date  Local authority    E92000001
#> 4021        2026         Week 10 Year to date  Local authority    E92000001
#> 4022        2026         Week 10 Year to date  Local authority    E92000001
#> 4023        2026         Week 10 Year to date  Local authority    E92000001
#> 4024        2026         Week 10 Year to date  Local authority    E92000001
#> 4025        2026         Week 10 Year to date  Local authority    E92000001
#> 4026        2026         Week 10 Year to date  Local authority    E92000001
#> 4027        2026         Week 10 Year to date  Local authority    E92000001
#> 4028        2026         Week 10 Year to date  Local authority    E92000001
#> 4029        2026         Week 10 Year to date  Local authority    E92000001
#> 4030        2026         Week 10 Year to date  Local authority    E92000001
#> 4031        2026         Week 10 Year to date  Local authority    E92000001
#> 4032        2026         Week 10 Year to date  Local authority    E92000001
#> 4033        2026         Week 10 Year to date  Local authority    E92000001
#> 4034        2026         Week 10 Year to date  Local authority    E92000001
#> 4035        2026         Week 10 Year to date  Local authority    E92000001
#> 4036        2026         Week 10 Year to date  Local authority    E92000001
#> 4037        2026         Week 10 Year to date  Local authority    E92000001
#> 4038        2026         Week 10 Year to date  Local authority    E92000001
#> 4039        2026         Week 10 Year to date         Regional    E92000001
#> 4040        2026         Week 10 Year to date         Regional    E92000001
#> 4041        2026         Week 10 Year to date         Regional    E92000001
#> 4042        2026         Week 10 Year to date         Regional    E92000001
#> 4043        2026         Week 10 Year to date  Local authority    E92000001
#> 4044        2026         Week 10 Year to date  Local authority    E92000001
#> 4045        2026         Week 10 Year to date  Local authority    E92000001
#> 4046        2026         Week 10 Year to date  Local authority    E92000001
#> 4047        2026         Week 10 Year to date  Local authority    E92000001
#> 4048        2026         Week 10 Year to date  Local authority    E92000001
#> 4049        2026         Week 10 Year to date  Local authority    E92000001
#> 4050        2026         Week 10 Year to date  Local authority    E92000001
#> 4051        2026         Week 10 Year to date  Local authority    E92000001
#> 4052        2026         Week 10 Year to date  Local authority    E92000001
#> 4053        2026         Week 10 Year to date  Local authority    E92000001
#> 4054        2026         Week 10 Year to date  Local authority    E92000001
#> 4055        2026         Week 10 Year to date  Local authority    E92000001
#> 4056        2026         Week 10 Year to date  Local authority    E92000001
#> 4057        2026         Week 10 Year to date  Local authority    E92000001
#> 4058        2026         Week 10 Year to date  Local authority    E92000001
#> 4059        2026         Week 10 Year to date  Local authority    E92000001
#> 4060        2026         Week 10 Year to date  Local authority    E92000001
#> 4061        2026         Week 10 Year to date  Local authority    E92000001
#> 4062        2026         Week 10 Year to date  Local authority    E92000001
#> 4063        2026         Week 10 Year to date  Local authority    E92000001
#> 4064        2026         Week 10 Year to date  Local authority    E92000001
#> 4065        2026         Week 10 Year to date  Local authority    E92000001
#> 4066        2026         Week 10 Year to date  Local authority    E92000001
#> 4067        2026         Week 10 Year to date  Local authority    E92000001
#> 4068        2026         Week 10 Year to date  Local authority    E92000001
#> 4069        2026         Week 10 Year to date  Local authority    E92000001
#> 4070        2026         Week 10 Year to date  Local authority    E92000001
#> 4071        2026         Week 10 Year to date  Local authority    E92000001
#> 4072        2026         Week 10 Year to date  Local authority    E92000001
#> 4073        2026         Week 10 Year to date  Local authority    E92000001
#> 4074        2026         Week 10 Year to date  Local authority    E92000001
#> 4075        2026         Week 10 Year to date  Local authority    E92000001
#> 4076        2026         Week 10 Year to date  Local authority    E92000001
#> 4077        2026         Week 10 Year to date  Local authority    E92000001
#> 4078        2026         Week 10 Year to date  Local authority    E92000001
#> 4079        2026         Week 10 Year to date  Local authority    E92000001
#> 4080        2026         Week 10 Year to date  Local authority    E92000001
#> 4081        2026         Week 10 Year to date  Local authority    E92000001
#> 4082        2026         Week 10 Year to date  Local authority    E92000001
#> 4083        2026         Week 10 Year to date  Local authority    E92000001
#> 4084        2026         Week 10 Year to date  Local authority    E92000001
#> 4085        2026         Week 10 Year to date  Local authority    E92000001
#> 4086        2026         Week 10 Year to date  Local authority    E92000001
#> 4087        2026         Week 10 Year to date  Local authority    E92000001
#> 4088        2026         Week 10 Year to date  Local authority    E92000001
#> 4089        2026         Week 10 Year to date  Local authority    E92000001
#> 4090        2026         Week 10 Year to date  Local authority    E92000001
#> 4091        2026         Week 10 Year to date  Local authority    E92000001
#> 4092        2026         Week 10 Year to date  Local authority    E92000001
#> 4093        2026         Week 10 Year to date  Local authority    E92000001
#> 4094        2026         Week 10 Year to date  Local authority    E92000001
#> 4095        2026         Week 10 Year to date  Local authority    E92000001
#> 4096        2026         Week 10 Year to date  Local authority    E92000001
#> 4097        2026         Week 10 Year to date  Local authority    E92000001
#> 4098        2026         Week 10 Year to date  Local authority    E92000001
#> 4099        2026         Week 10 Year to date  Local authority    E92000001
#> 4100        2026         Week 10 Year to date  Local authority    E92000001
#> 4101        2026         Week 10 Year to date  Local authority    E92000001
#> 4102        2026         Week 10 Year to date  Local authority    E92000001
#> 4103        2026         Week 10 Year to date         Regional    E92000001
#> 4104        2026         Week 10 Year to date         Regional    E92000001
#> 4105        2026         Week 10 Year to date         Regional    E92000001
#> 4106        2026         Week 10 Year to date         Regional    E92000001
#> 4107        2026         Week 10 Year to date  Local authority    E92000001
#> 4108        2026         Week 10 Year to date  Local authority    E92000001
#> 4109        2026         Week 10 Year to date  Local authority    E92000001
#> 4110        2026         Week 10 Year to date  Local authority    E92000001
#> 4111        2026         Week 10 Year to date  Local authority    E92000001
#> 4112        2026         Week 10 Year to date  Local authority    E92000001
#> 4113        2026         Week 10 Year to date  Local authority    E92000001
#> 4114        2026         Week 10 Year to date  Local authority    E92000001
#> 4115        2026         Week 10 Year to date  Local authority    E92000001
#> 4116        2026         Week 10 Year to date  Local authority    E92000001
#> 4117        2026         Week 10 Year to date  Local authority    E92000001
#> 4118        2026         Week 10 Year to date  Local authority    E92000001
#> 4119        2026         Week 10 Year to date  Local authority    E92000001
#> 4120        2026         Week 10 Year to date  Local authority    E92000001
#> 4121        2026         Week 10 Year to date  Local authority    E92000001
#> 4122        2026         Week 10 Year to date  Local authority    E92000001
#> 4123        2026         Week 10 Year to date  Local authority    E92000001
#> 4124        2026         Week 10 Year to date  Local authority    E92000001
#> 4125        2026         Week 10 Year to date  Local authority    E92000001
#> 4126        2026         Week 10 Year to date  Local authority    E92000001
#> 4127        2026         Week 10 Year to date  Local authority    E92000001
#> 4128        2026         Week 10 Year to date  Local authority    E92000001
#> 4129        2026         Week 10 Year to date  Local authority    E92000001
#> 4130        2026         Week 10 Year to date  Local authority    E92000001
#> 4131        2026         Week 10 Year to date  Local authority    E92000001
#> 4132        2026         Week 10 Year to date  Local authority    E92000001
#> 4133        2026         Week 10 Year to date  Local authority    E92000001
#> 4134        2026         Week 10 Year to date  Local authority    E92000001
#> 4135        2026         Week 10 Year to date  Local authority    E92000001
#> 4136        2026         Week 10 Year to date  Local authority    E92000001
#> 4137        2026         Week 10 Year to date  Local authority    E92000001
#> 4138        2026         Week 10 Year to date  Local authority    E92000001
#> 4139        2026         Week 10 Year to date  Local authority    E92000001
#> 4140        2026         Week 10 Year to date  Local authority    E92000001
#> 4141        2026         Week 10 Year to date  Local authority    E92000001
#> 4142        2026         Week 10 Year to date  Local authority    E92000001
#> 4143        2026         Week 10 Year to date  Local authority    E92000001
#> 4144        2026         Week 10 Year to date  Local authority    E92000001
#> 4145        2026         Week 10 Year to date  Local authority    E92000001
#> 4146        2026         Week 10 Year to date         Regional    E92000001
#> 4147        2026         Week 10 Year to date         Regional    E92000001
#> 4148        2026         Week 10 Year to date         Regional    E92000001
#> 4149        2026         Week 10 Year to date         Regional    E92000001
#> 4150        2026         Week 10 Year to date  Local authority    E92000001
#> 4151        2026         Week 10 Year to date  Local authority    E92000001
#> 4152        2026         Week 10 Year to date  Local authority    E92000001
#> 4153        2026         Week 10 Year to date  Local authority    E92000001
#> 4154        2026         Week 10 Year to date  Local authority    E92000001
#> 4155        2026         Week 10 Year to date  Local authority    E92000001
#> 4156        2026         Week 10 Year to date  Local authority    E92000001
#> 4157        2026         Week 10 Year to date  Local authority    E92000001
#> 4158        2026         Week 10 Year to date  Local authority    E92000001
#> 4159        2026         Week 10 Year to date  Local authority    E92000001
#> 4160        2026         Week 10 Year to date  Local authority    E92000001
#> 4161        2026         Week 10 Year to date  Local authority    E92000001
#> 4162        2026         Week 10 Year to date  Local authority    E92000001
#> 4163        2026         Week 10 Year to date  Local authority    E92000001
#> 4164        2026         Week 10 Year to date  Local authority    E92000001
#> 4165        2026         Week 10 Year to date  Local authority    E92000001
#> 4166        2026         Week 10 Year to date  Local authority    E92000001
#> 4167        2026         Week 10 Year to date  Local authority    E92000001
#> 4168        2026         Week 10 Year to date  Local authority    E92000001
#> 4169        2026         Week 10 Year to date  Local authority    E92000001
#> 4170        2026         Week 10 Year to date  Local authority    E92000001
#> 4171        2026         Week 10 Year to date  Local authority    E92000001
#> 4172        2026         Week 10 Year to date  Local authority    E92000001
#> 4173        2026         Week 10 Year to date  Local authority    E92000001
#> 4174        2026         Week 10 Year to date  Local authority    E92000001
#> 4175        2026         Week 10 Year to date  Local authority    E92000001
#> 4176        2026         Week 10 Year to date  Local authority    E92000001
#> 4177        2026         Week 10 Year to date  Local authority    E92000001
#> 4178        2026         Week 10 Year to date  Local authority    E92000001
#> 4179        2026         Week 10 Year to date  Local authority    E92000001
#> 4180        2026         Week 10 Year to date  Local authority    E92000001
#> 4181        2026         Week 10 Year to date  Local authority    E92000001
#> 4182        2026         Week 10 Year to date  Local authority    E92000001
#> 4183        2026         Week 10 Year to date  Local authority    E92000001
#> 4184        2026         Week 10 Year to date  Local authority    E92000001
#> 4185        2026         Week 10 Year to date  Local authority    E92000001
#> 4186        2026         Week 10 Year to date  Local authority    E92000001
#> 4187        2026         Week 10 Year to date  Local authority    E92000001
#> 4188        2026         Week 10 Year to date  Local authority    E92000001
#> 4189        2026         Week 10 Year to date  Local authority    E92000001
#> 4190        2026         Week 10 Year to date  Local authority    E92000001
#> 4191        2026         Week 10 Year to date  Local authority    E92000001
#> 4192        2026         Week 10 Year to date  Local authority    E92000001
#> 4193        2026         Week 10 Year to date  Local authority    E92000001
#> 4194        2026         Week 10 Year to date  Local authority    E92000001
#> 4195        2026         Week 10 Year to date  Local authority    E92000001
#> 4196        2026         Week 10 Year to date  Local authority    E92000001
#> 4197        2026         Week 10 Year to date  Local authority    E92000001
#> 4198        2026         Week 10 Year to date  Local authority    E92000001
#> 4199        2026         Week 10 Year to date  Local authority    E92000001
#> 4200        2026         Week 10 Year to date  Local authority    E92000001
#> 4201        2026         Week 10 Year to date  Local authority    E92000001
#> 4202        2026         Week 10 Year to date  Local authority    E92000001
#> 4203        2026         Week 10 Year to date  Local authority    E92000001
#> 4204        2026         Week 10 Year to date  Local authority    E92000001
#> 4205        2026         Week 10 Year to date  Local authority    E92000001
#> 4206        2026         Week 10 Year to date         Regional    E92000001
#> 4207        2026         Week 10 Year to date         Regional    E92000001
#> 4208        2026         Week 10 Year to date         Regional    E92000001
#> 4209        2026         Week 10 Year to date         Regional    E92000001
#> 4210        2026         Week 10 Year to date  Local authority    E92000001
#> 4211        2026         Week 10 Year to date  Local authority    E92000001
#> 4212        2026         Week 10 Year to date  Local authority    E92000001
#> 4213        2026         Week 10 Year to date  Local authority    E92000001
#> 4214        2026         Week 10 Year to date  Local authority    E92000001
#> 4215        2026         Week 10 Year to date  Local authority    E92000001
#> 4216        2026         Week 10 Year to date  Local authority    E92000001
#> 4217        2026         Week 10 Year to date  Local authority    E92000001
#> 4218        2026         Week 10 Year to date  Local authority    E92000001
#> 4219        2026         Week 10 Year to date  Local authority    E92000001
#> 4220        2026         Week 10 Year to date  Local authority    E92000001
#> 4221        2026         Week 10 Year to date  Local authority    E92000001
#> 4222        2026         Week 10 Year to date  Local authority    E92000001
#> 4223        2026         Week 10 Year to date  Local authority    E92000001
#> 4224        2026         Week 10 Year to date  Local authority    E92000001
#> 4225        2026         Week 10 Year to date  Local authority    E92000001
#> 4226        2026         Week 10 Year to date  Local authority    E92000001
#> 4227        2026         Week 10 Year to date  Local authority    E92000001
#> 4228        2026         Week 10 Year to date  Local authority    E92000001
#> 4229        2026         Week 10 Year to date  Local authority    E92000001
#> 4230        2026         Week 10 Year to date  Local authority    E92000001
#> 4231        2026         Week 10 Year to date  Local authority    E92000001
#> 4232        2026         Week 10 Year to date  Local authority    E92000001
#> 4233        2026         Week 10 Year to date  Local authority    E92000001
#> 4234        2026         Week 10 Year to date  Local authority    E92000001
#> 4235        2026         Week 10 Year to date  Local authority    E92000001
#> 4236        2026         Week 10 Year to date  Local authority    E92000001
#> 4237        2026         Week 10 Year to date  Local authority    E92000001
#> 4238        2026         Week 10 Year to date  Local authority    E92000001
#> 4239        2026         Week 10 Year to date  Local authority    E92000001
#> 4240        2026         Week 10 Year to date  Local authority    E92000001
#> 4241        2026         Week 10 Year to date  Local authority    E92000001
#> 4242        2026         Week 10 Year to date  Local authority    E92000001
#> 4243        2026         Week 10 Year to date  Local authority    E92000001
#> 4244        2026         Week 10 Year to date  Local authority    E92000001
#> 4245        2026         Week 10 Year to date  Local authority    E92000001
#> 4246        2026         Week 10 Year to date  Local authority    E92000001
#> 4247        2026         Week 10 Year to date  Local authority    E92000001
#> 4248        2026         Week 10 Year to date  Local authority    E92000001
#> 4249        2026         Week 10 Year to date  Local authority    E92000001
#> 4250        2026         Week 10 Year to date  Local authority    E92000001
#> 4251        2026         Week 10 Year to date  Local authority    E92000001
#> 4252        2026         Week 10 Year to date  Local authority    E92000001
#> 4253        2026         Week 10 Year to date  Local authority    E92000001
#> 4254        2026         Week 10 Year to date         Regional    E92000001
#> 4255        2026         Week 10 Year to date         Regional    E92000001
#> 4256        2026         Week 10 Year to date         Regional    E92000001
#> 4257        2026         Week 10 Year to date         Regional    E92000001
#> 4258        2026         Week 10 Year to date  Local authority    E92000001
#> 4259        2026         Week 10 Year to date  Local authority    E92000001
#> 4260        2026         Week 10 Year to date  Local authority    E92000001
#> 4261        2026         Week 10 Year to date  Local authority    E92000001
#> 4262        2026         Week 10 Year to date  Local authority    E92000001
#> 4263        2026         Week 10 Year to date  Local authority    E92000001
#> 4264        2026         Week 10 Year to date  Local authority    E92000001
#> 4265        2026         Week 10 Year to date  Local authority    E92000001
#> 4266        2026         Week 10 Year to date  Local authority    E92000001
#> 4267        2026         Week 10 Year to date  Local authority    E92000001
#> 4268        2026         Week 10 Year to date  Local authority    E92000001
#> 4269        2026         Week 10 Year to date  Local authority    E92000001
#> 4270        2026         Week 10 Year to date  Local authority    E92000001
#> 4271        2026         Week 10 Year to date  Local authority    E92000001
#> 4272        2026         Week 10 Year to date  Local authority    E92000001
#> 4273        2026         Week 10 Year to date  Local authority    E92000001
#> 4274        2026         Week 10 Year to date  Local authority    E92000001
#> 4275        2026         Week 10 Year to date  Local authority    E92000001
#> 4276        2026         Week 10 Year to date  Local authority    E92000001
#> 4277        2026         Week 10 Year to date  Local authority    E92000001
#> 4278        2026         Week 10 Year to date  Local authority    E92000001
#> 4279        2026         Week 10 Year to date  Local authority    E92000001
#> 4280        2026         Week 10 Year to date  Local authority    E92000001
#> 4281        2026         Week 10 Year to date  Local authority    E92000001
#> 4282        2026         Week 10 Year to date  Local authority    E92000001
#> 4283        2026         Week 10 Year to date  Local authority    E92000001
#> 4284        2026         Week 10 Year to date  Local authority    E92000001
#> 4285        2026         Week 10 Year to date  Local authority    E92000001
#> 4286        2026         Week 10 Year to date  Local authority    E92000001
#> 4287        2026         Week 10 Year to date  Local authority    E92000001
#> 4288        2026         Week 10 Year to date  Local authority    E92000001
#> 4289        2026         Week 10 Year to date  Local authority    E92000001
#> 4290        2026         Week 10 Year to date  Local authority    E92000001
#> 4291        2026         Week 10 Year to date  Local authority    E92000001
#> 4292        2026         Week 10 Year to date  Local authority    E92000001
#> 4293        2026         Week 10 Year to date  Local authority    E92000001
#> 4294        2026         Week 10 Year to date  Local authority    E92000001
#> 4295        2026         Week 10 Year to date  Local authority    E92000001
#> 4296        2026         Week 10 Year to date  Local authority    E92000001
#> 4297        2026         Week 10 Year to date  Local authority    E92000001
#> 4298        2026         Week 10 Year to date  Local authority    E92000001
#> 4299        2026         Week 10 Year to date  Local authority    E92000001
#> 4300        2026         Week 10 Year to date  Local authority    E92000001
#> 4301        2026         Week 10 Year to date  Local authority    E92000001
#> 4302        2026         Week 10 Year to date  Local authority    E92000001
#> 4303        2026         Week 10 Year to date  Local authority    E92000001
#> 4304        2026         Week 10 Year to date  Local authority    E92000001
#> 4305        2026         Week 10 Year to date  Local authority    E92000001
#> 4306        2026         Week 10 Year to date  Local authority    E92000001
#> 4307        2026         Week 10 Year to date  Local authority    E92000001
#> 4308        2026         Week 10 Year to date  Local authority    E92000001
#> 4309        2026         Week 10 Year to date  Local authority    E92000001
#> 4310        2026         Week 10 Year to date  Local authority    E92000001
#> 4311        2026         Week 10 Year to date  Local authority    E92000001
#> 4312        2026         Week 10 Year to date  Local authority    E92000001
#> 4313        2026         Week 10 Year to date  Local authority    E92000001
#> 4314        2026         Week 10 Year to date  Local authority    E92000001
#> 4315        2026         Week 10 Year to date  Local authority    E92000001
#> 4316        2026         Week 10 Year to date  Local authority    E92000001
#> 4317        2026         Week 10 Year to date  Local authority    E92000001
#> 4318        2026         Week 10 Year to date  Local authority    E92000001
#> 4319        2026         Week 10 Year to date  Local authority    E92000001
#> 4320        2026         Week 10 Year to date  Local authority    E92000001
#> 4321        2026         Week 10 Year to date  Local authority    E92000001
#> 4322        2026         Week 10 Year to date  Local authority    E92000001
#> 4323        2026         Week 10 Year to date  Local authority    E92000001
#> 4324        2026         Week 10 Year to date  Local authority    E92000001
#> 4325        2026         Week 10 Year to date  Local authority    E92000001
#> 4326        2026         Week 10 Year to date  Local authority    E92000001
#> 4327        2026         Week 10 Year to date  Local authority    E92000001
#> 4328        2026         Week 10 Year to date  Local authority    E92000001
#> 4329        2026         Week 10 Year to date  Local authority    E92000001
#> 4330        2026         Week 10 Year to date  Local authority    E92000001
#> 4331        2026         Week 10 Year to date  Local authority    E92000001
#> 4332        2026         Week 10 Year to date  Local authority    E92000001
#> 4333        2026         Week 10 Year to date  Local authority    E92000001
#> 4334        2026         Week 10 Year to date  Local authority    E92000001
#> 4335        2026         Week 10 Year to date  Local authority    E92000001
#> 4336        2026         Week 10 Year to date  Local authority    E92000001
#> 4337        2026         Week 10 Year to date  Local authority    E92000001
#> 4338        2026         Week 10 Year to date  Local authority    E92000001
#> 4339        2026         Week 10 Year to date  Local authority    E92000001
#> 4340        2026         Week 10 Year to date  Local authority    E92000001
#> 4341        2026         Week 10 Year to date  Local authority    E92000001
#> 4342        2026         Week 10 Year to date  Local authority    E92000001
#> 4343        2026         Week 10 Year to date  Local authority    E92000001
#> 4344        2026         Week 10 Year to date  Local authority    E92000001
#> 4345        2026         Week 10 Year to date  Local authority    E92000001
#> 4346        2026         Week 10 Year to date  Local authority    E92000001
#> 4347        2026         Week 10 Year to date  Local authority    E92000001
#> 4348        2026         Week 10 Year to date  Local authority    E92000001
#> 4349        2026         Week 10 Year to date  Local authority    E92000001
#> 4350        2026         Week 10 Year to date  Local authority    E92000001
#> 4351        2026         Week 10 Year to date  Local authority    E92000001
#> 4352        2026         Week 10 Year to date  Local authority    E92000001
#> 4353        2026         Week 10 Year to date  Local authority    E92000001
#> 4354        2026         Week 10 Year to date  Local authority    E92000001
#> 4355        2026         Week 10 Year to date  Local authority    E92000001
#> 4356        2026         Week 10 Year to date  Local authority    E92000001
#> 4357        2026         Week 10 Year to date  Local authority    E92000001
#> 4358        2026         Week 10 Year to date  Local authority    E92000001
#> 4359        2026         Week 10 Year to date  Local authority    E92000001
#> 4360        2026         Week 10 Year to date  Local authority    E92000001
#> 4361        2026         Week 10 Year to date  Local authority    E92000001
#> 4362        2026         Week 10 Year to date  Local authority    E92000001
#> 4363        2026         Week 10 Year to date  Local authority    E92000001
#> 4364        2026         Week 10 Year to date  Local authority    E92000001
#> 4365        2026         Week 10 Year to date  Local authority    E92000001
#> 4366        2026         Week 10 Year to date  Local authority    E92000001
#> 4367        2026         Week 10 Year to date  Local authority    E92000001
#> 4368        2026         Week 10 Year to date  Local authority    E92000001
#> 4369        2026         Week 10 Year to date  Local authority    E92000001
#> 4370        2026         Week 10 Year to date  Local authority    E92000001
#> 4371        2026         Week 10 Year to date  Local authority    E92000001
#> 4372        2026         Week 10 Year to date  Local authority    E92000001
#> 4373        2026         Week 10 Year to date  Local authority    E92000001
#> 4374        2026         Week 10 Year to date  Local authority    E92000001
#> 4375        2026         Week 10 Year to date  Local authority    E92000001
#> 4376        2026         Week 10 Year to date  Local authority    E92000001
#> 4377        2026         Week 10 Year to date  Local authority    E92000001
#> 4378        2026         Week 10 Year to date  Local authority    E92000001
#> 4379        2026         Week 10 Year to date  Local authority    E92000001
#> 4380        2026         Week 10 Year to date  Local authority    E92000001
#> 4381        2026         Week 10 Year to date  Local authority    E92000001
#> 4382        2026         Week 10 Year to date  Local authority    E92000001
#> 4383        2026         Week 10 Year to date  Local authority    E92000001
#> 4384        2026         Week 10 Year to date  Local authority    E92000001
#> 4385        2026         Week 10 Year to date  Local authority    E92000001
#> 4386        2026         Week 10 Year to date  Local authority    E92000001
#> 4387        2026         Week 10 Year to date  Local authority    E92000001
#> 4388        2026         Week 10 Year to date         Regional    E92000001
#> 4389        2026         Week 10 Year to date         Regional    E92000001
#> 4390        2026         Week 10 Year to date         Regional    E92000001
#> 4391        2026         Week 10 Year to date         Regional    E92000001
#> 4392        2026         Week 10 Year to date  Local authority    E92000001
#> 4393        2026         Week 10 Year to date  Local authority    E92000001
#> 4394        2026         Week 10 Year to date  Local authority    E92000001
#> 4395        2026         Week 10 Year to date  Local authority    E92000001
#> 4396        2026         Week 10 Year to date  Local authority    E92000001
#> 4397        2026         Week 10 Year to date  Local authority    E92000001
#> 4398        2026         Week 10 Year to date  Local authority    E92000001
#> 4399        2026         Week 10 Year to date  Local authority    E92000001
#> 4400        2026         Week 10 Year to date  Local authority    E92000001
#> 4401        2026         Week 10 Year to date  Local authority    E92000001
#> 4402        2026         Week 10 Year to date  Local authority    E92000001
#> 4403        2026         Week 10 Year to date  Local authority    E92000001
#> 4404        2026         Week 10 Year to date  Local authority    E92000001
#> 4405        2026         Week 10 Year to date  Local authority    E92000001
#> 4406        2026         Week 10 Year to date  Local authority    E92000001
#> 4407        2026         Week 10 Year to date  Local authority    E92000001
#> 4408        2026         Week 10 Year to date  Local authority    E92000001
#> 4409        2026         Week 10 Year to date  Local authority    E92000001
#> 4410        2026         Week 10 Year to date  Local authority    E92000001
#> 4411        2026         Week 10 Year to date  Local authority    E92000001
#> 4412        2026         Week 10 Year to date  Local authority    E92000001
#> 4413        2026         Week 10 Year to date  Local authority    E92000001
#> 4414        2026         Week 10 Year to date  Local authority    E92000001
#> 4415        2026         Week 10 Year to date  Local authority    E92000001
#> 4416        2026         Week 10 Year to date  Local authority    E92000001
#> 4417        2026         Week 10 Year to date  Local authority    E92000001
#> 4418        2026         Week 10 Year to date  Local authority    E92000001
#> 4419        2026         Week 10 Year to date  Local authority    E92000001
#> 4420        2026         Week 10 Year to date  Local authority    E92000001
#> 4421        2026         Week 10 Year to date  Local authority    E92000001
#> 4422        2026         Week 10 Year to date  Local authority    E92000001
#> 4423        2026         Week 10 Year to date  Local authority    E92000001
#> 4424        2026         Week 10 Year to date  Local authority    E92000001
#> 4425        2026         Week 10 Year to date  Local authority    E92000001
#> 4426        2026         Week 10 Year to date  Local authority    E92000001
#> 4427        2026         Week 10 Year to date  Local authority    E92000001
#> 4428        2026         Week 10 Year to date  Local authority    E92000001
#> 4429        2026         Week 10 Year to date  Local authority    E92000001
#> 4430        2026         Week 10 Year to date  Local authority    E92000001
#> 4431        2026         Week 10 Year to date  Local authority    E92000001
#> 4432        2026         Week 10 Year to date  Local authority    E92000001
#> 4433        2026         Week 10 Year to date  Local authority    E92000001
#> 4434        2026         Week 10 Year to date  Local authority    E92000001
#> 4435        2026         Week 10 Year to date  Local authority    E92000001
#> 4436        2026         Week 10 Year to date  Local authority    E92000001
#> 4437        2026         Week 10 Year to date  Local authority    E92000001
#> 4438        2026         Week 10 Year to date  Local authority    E92000001
#> 4439        2026         Week 10 Year to date  Local authority    E92000001
#> 4440        2026         Week 10 Year to date  Local authority    E92000001
#> 4441        2026         Week 10 Year to date  Local authority    E92000001
#> 4442        2026         Week 10 Year to date  Local authority    E92000001
#> 4443        2026         Week 10 Year to date  Local authority    E92000001
#> 4444        2026         Week 10 Year to date  Local authority    E92000001
#> 4445        2026         Week 10 Year to date  Local authority    E92000001
#> 4446        2026         Week 10 Year to date  Local authority    E92000001
#> 4447        2026         Week 10 Year to date  Local authority    E92000001
#> 4448        2026         Week 10 Year to date  Local authority    E92000001
#> 4449        2026         Week 10 Year to date  Local authority    E92000001
#> 4450        2026         Week 10 Year to date  Local authority    E92000001
#> 4451        2026         Week 10 Year to date  Local authority    E92000001
#> 4452        2026         Week 10 Year to date  Local authority    E92000001
#> 4453        2026         Week 10 Year to date  Local authority    E92000001
#> 4454        2026         Week 10 Year to date  Local authority    E92000001
#> 4455        2026         Week 10 Year to date  Local authority    E92000001
#> 4456        2026         Week 10 Year to date  Local authority    E92000001
#> 4457        2026         Week 10 Year to date  Local authority    E92000001
#> 4458        2026         Week 10 Year to date  Local authority    E92000001
#> 4459        2026         Week 10 Year to date  Local authority    E92000001
#> 4460        2026         Week 10 Year to date  Local authority    E92000001
#> 4461        2026         Week 10 Year to date  Local authority    E92000001
#> 4462        2026         Week 10 Year to date  Local authority    E92000001
#> 4463        2026         Week 10 Year to date  Local authority    E92000001
#> 4464        2026         Week 10 Year to date  Local authority    E92000001
#> 4465        2026         Week 10 Year to date  Local authority    E92000001
#> 4466        2026         Week 10 Year to date  Local authority    E92000001
#> 4467        2026         Week 10 Year to date  Local authority    E92000001
#> 4468        2026         Week 10 Year to date         Regional    E92000001
#> 4469        2026         Week 10 Year to date         Regional    E92000001
#> 4470        2026         Week 10 Year to date         Regional    E92000001
#> 4471        2026         Week 10 Year to date         Regional    E92000001
#> 4472        2026         Week 10 Year to date  Local authority    E92000001
#> 4473        2026         Week 10 Year to date  Local authority    E92000001
#> 4474        2026         Week 10 Year to date  Local authority    E92000001
#> 4475        2026         Week 10 Year to date  Local authority    E92000001
#> 4476        2026         Week 10 Year to date  Local authority    E92000001
#> 4477        2026         Week 10 Year to date  Local authority    E92000001
#> 4478        2026         Week 10 Year to date  Local authority    E92000001
#> 4479        2026         Week 10 Year to date  Local authority    E92000001
#> 4480        2026         Week 10 Year to date  Local authority    E92000001
#> 4481        2026         Week 10 Year to date  Local authority    E92000001
#> 4482        2026         Week 10 Year to date  Local authority    E92000001
#> 4483        2026         Week 10 Year to date  Local authority    E92000001
#> 4484        2026         Week 10 Year to date  Local authority    E92000001
#> 4485        2026         Week 10 Year to date  Local authority    E92000001
#> 4486        2026         Week 10 Year to date  Local authority    E92000001
#> 4487        2026         Week 10 Year to date  Local authority    E92000001
#> 4488        2026         Week 10 Year to date  Local authority    E92000001
#> 4489        2026         Week 10 Year to date  Local authority    E92000001
#> 4490        2026         Week 10 Year to date  Local authority    E92000001
#> 4491        2026         Week 10 Year to date  Local authority    E92000001
#> 4492        2026         Week 10 Year to date  Local authority    E92000001
#> 4493        2026         Week 10 Year to date  Local authority    E92000001
#> 4494        2026         Week 10 Year to date  Local authority    E92000001
#> 4495        2026         Week 10 Year to date  Local authority    E92000001
#> 4496        2026         Week 10 Year to date  Local authority    E92000001
#> 4497        2026         Week 10 Year to date  Local authority    E92000001
#> 4498        2026         Week 10 Year to date  Local authority    E92000001
#> 4499        2026         Week 10 Year to date  Local authority    E92000001
#> 4500        2026         Week 10 Year to date  Local authority    E92000001
#> 4501        2026         Week 10 Year to date  Local authority    E92000001
#> 4502        2026         Week 10 Year to date  Local authority    E92000001
#> 4503        2026         Week 10 Year to date  Local authority    E92000001
#> 4504        2026         Week 10 Year to date  Local authority    E92000001
#> 4505        2026         Week 10 Year to date  Local authority    E92000001
#> 4506        2026         Week 10 Year to date  Local authority    E92000001
#> 4507        2026         Week 10 Year to date  Local authority    E92000001
#> 4508        2026         Week 10 Year to date  Local authority    E92000001
#> 4509        2026         Week 10 Year to date  Local authority    E92000001
#> 4510        2026         Week 10 Year to date  Local authority    E92000001
#> 4511        2026         Week 10 Year to date  Local authority    E92000001
#> 4512        2026         Week 10 Year to date  Local authority    E92000001
#> 4513        2026         Week 10 Year to date  Local authority    E92000001
#> 4514        2026         Week 10 Year to date  Local authority    E92000001
#> 4515        2026         Week 10 Year to date  Local authority    E92000001
#> 4516        2026         Week 10 Year to date  Local authority    E92000001
#> 4517        2026         Week 10 Year to date  Local authority    E92000001
#> 4518        2026         Week 10 Year to date  Local authority    E92000001
#> 4519        2026         Week 10 Year to date  Local authority    E92000001
#> 4520        2026         Week 10 Year to date  Local authority    E92000001
#> 4521        2026         Week 10 Year to date  Local authority    E92000001
#> 4522        2026         Week 10 Year to date  Local authority    E92000001
#> 4523        2026         Week 10 Year to date  Local authority    E92000001
#> 4524        2026         Week 10 Year to date  Local authority    E92000001
#> 4525        2026         Week 10 Year to date  Local authority    E92000001
#> 4526        2026         Week 10 Year to date  Local authority    E92000001
#> 4527        2026         Week 10 Year to date  Local authority    E92000001
#> 4528        2026         Week 10 Year to date  Local authority    E92000001
#> 4529        2026         Week 10 Year to date  Local authority    E92000001
#> 4530        2026          Week 8 Year to date         National    E92000001
#> 4531        2026          Week 8 Year to date         National    E92000001
#> 4532        2026          Week 8 Year to date         National    E92000001
#> 4533        2026          Week 8 Year to date         National    E92000001
#> 4534        2026          Week 8 Year to date         Regional    E92000001
#> 4535        2026          Week 8 Year to date         Regional    E92000001
#> 4536        2026          Week 8 Year to date         Regional    E92000001
#> 4537        2026          Week 8 Year to date         Regional    E92000001
#> 4538        2026          Week 8 Year to date  Local authority    E92000001
#> 4539        2026          Week 8 Year to date  Local authority    E92000001
#> 4540        2026          Week 8 Year to date  Local authority    E92000001
#> 4541        2026          Week 8 Year to date  Local authority    E92000001
#> 4542        2026          Week 8 Year to date  Local authority    E92000001
#> 4543        2026          Week 8 Year to date  Local authority    E92000001
#> 4544        2026          Week 8 Year to date  Local authority    E92000001
#> 4545        2026          Week 8 Year to date  Local authority    E92000001
#> 4546        2026          Week 8 Year to date  Local authority    E92000001
#> 4547        2026          Week 8 Year to date  Local authority    E92000001
#> 4548        2026          Week 8 Year to date  Local authority    E92000001
#> 4549        2026          Week 8 Year to date  Local authority    E92000001
#> 4550        2026          Week 8 Year to date  Local authority    E92000001
#> 4551        2026          Week 8 Year to date  Local authority    E92000001
#> 4552        2026          Week 8 Year to date  Local authority    E92000001
#> 4553        2026          Week 8 Year to date  Local authority    E92000001
#> 4554        2026          Week 8 Year to date  Local authority    E92000001
#> 4555        2026          Week 8 Year to date  Local authority    E92000001
#> 4556        2026          Week 8 Year to date  Local authority    E92000001
#> 4557        2026          Week 8 Year to date  Local authority    E92000001
#> 4558        2026          Week 8 Year to date  Local authority    E92000001
#> 4559        2026          Week 8 Year to date  Local authority    E92000001
#> 4560        2026          Week 8 Year to date  Local authority    E92000001
#> 4561        2026          Week 8 Year to date  Local authority    E92000001
#> 4562        2026          Week 8 Year to date  Local authority    E92000001
#> 4563        2026          Week 8 Year to date  Local authority    E92000001
#> 4564        2026          Week 8 Year to date  Local authority    E92000001
#> 4565        2026          Week 8 Year to date  Local authority    E92000001
#> 4566        2026          Week 8 Year to date  Local authority    E92000001
#> 4567        2026          Week 8 Year to date  Local authority    E92000001
#> 4568        2026          Week 8 Year to date  Local authority    E92000001
#> 4569        2026          Week 8 Year to date  Local authority    E92000001
#> 4570        2026          Week 8 Year to date  Local authority    E92000001
#> 4571        2026          Week 8 Year to date  Local authority    E92000001
#> 4572        2026          Week 8 Year to date  Local authority    E92000001
#> 4573        2026          Week 8 Year to date  Local authority    E92000001
#> 4574        2026          Week 8 Year to date  Local authority    E92000001
#> 4575        2026          Week 8 Year to date  Local authority    E92000001
#> 4576        2026          Week 8 Year to date  Local authority    E92000001
#> 4577        2026          Week 8 Year to date  Local authority    E92000001
#> 4578        2026          Week 8 Year to date  Local authority    E92000001
#> 4579        2026          Week 8 Year to date  Local authority    E92000001
#> 4580        2026          Week 8 Year to date  Local authority    E92000001
#> 4581        2026          Week 8 Year to date  Local authority    E92000001
#> 4582        2026          Week 8 Year to date  Local authority    E92000001
#> 4583        2026          Week 8 Year to date  Local authority    E92000001
#> 4584        2026          Week 8 Year to date  Local authority    E92000001
#> 4585        2026          Week 8 Year to date  Local authority    E92000001
#> 4586        2026          Week 8 Year to date         Regional    E92000001
#> 4587        2026          Week 8 Year to date         Regional    E92000001
#> 4588        2026          Week 8 Year to date         Regional    E92000001
#> 4589        2026          Week 8 Year to date         Regional    E92000001
#> 4590        2026          Week 8 Year to date  Local authority    E92000001
#> 4591        2026          Week 8 Year to date  Local authority    E92000001
#> 4592        2026          Week 8 Year to date  Local authority    E92000001
#> 4593        2026          Week 8 Year to date  Local authority    E92000001
#> 4594        2026          Week 8 Year to date  Local authority    E92000001
#> 4595        2026          Week 8 Year to date  Local authority    E92000001
#> 4596        2026          Week 8 Year to date  Local authority    E92000001
#> 4597        2026          Week 8 Year to date  Local authority    E92000001
#> 4598        2026          Week 8 Year to date  Local authority    E92000001
#> 4599        2026          Week 8 Year to date  Local authority    E92000001
#> 4600        2026          Week 8 Year to date  Local authority    E92000001
#> 4601        2026          Week 8 Year to date  Local authority    E92000001
#> 4602        2026          Week 8 Year to date  Local authority    E92000001
#> 4603        2026          Week 8 Year to date  Local authority    E92000001
#> 4604        2026          Week 8 Year to date  Local authority    E92000001
#> 4605        2026          Week 8 Year to date  Local authority    E92000001
#> 4606        2026          Week 8 Year to date  Local authority    E92000001
#> 4607        2026          Week 8 Year to date  Local authority    E92000001
#> 4608        2026          Week 8 Year to date  Local authority    E92000001
#> 4609        2026          Week 8 Year to date  Local authority    E92000001
#> 4610        2026          Week 8 Year to date  Local authority    E92000001
#> 4611        2026          Week 8 Year to date  Local authority    E92000001
#> 4612        2026          Week 8 Year to date  Local authority    E92000001
#> 4613        2026          Week 8 Year to date  Local authority    E92000001
#> 4614        2026          Week 8 Year to date  Local authority    E92000001
#> 4615        2026          Week 8 Year to date  Local authority    E92000001
#> 4616        2026          Week 8 Year to date  Local authority    E92000001
#> 4617        2026          Week 8 Year to date  Local authority    E92000001
#> 4618        2026          Week 8 Year to date  Local authority    E92000001
#> 4619        2026          Week 8 Year to date  Local authority    E92000001
#> 4620        2026          Week 8 Year to date  Local authority    E92000001
#> 4621        2026          Week 8 Year to date  Local authority    E92000001
#> 4622        2026          Week 8 Year to date  Local authority    E92000001
#> 4623        2026          Week 8 Year to date  Local authority    E92000001
#> 4624        2026          Week 8 Year to date  Local authority    E92000001
#> 4625        2026          Week 8 Year to date  Local authority    E92000001
#> 4626        2026          Week 8 Year to date  Local authority    E92000001
#> 4627        2026          Week 8 Year to date  Local authority    E92000001
#> 4628        2026          Week 8 Year to date  Local authority    E92000001
#> 4629        2026          Week 8 Year to date  Local authority    E92000001
#> 4630        2026          Week 8 Year to date  Local authority    E92000001
#> 4631        2026          Week 8 Year to date  Local authority    E92000001
#> 4632        2026          Week 8 Year to date  Local authority    E92000001
#> 4633        2026          Week 8 Year to date  Local authority    E92000001
#> 4634        2026          Week 8 Year to date  Local authority    E92000001
#> 4635        2026          Week 8 Year to date  Local authority    E92000001
#> 4636        2026          Week 8 Year to date  Local authority    E92000001
#> 4637        2026          Week 8 Year to date  Local authority    E92000001
#> 4638        2026          Week 8 Year to date  Local authority    E92000001
#> 4639        2026          Week 8 Year to date  Local authority    E92000001
#> 4640        2026          Week 8 Year to date  Local authority    E92000001
#> 4641        2026          Week 8 Year to date  Local authority    E92000001
#> 4642        2026          Week 8 Year to date  Local authority    E92000001
#> 4643        2026          Week 8 Year to date  Local authority    E92000001
#> 4644        2026          Week 8 Year to date  Local authority    E92000001
#> 4645        2026          Week 8 Year to date  Local authority    E92000001
#> 4646        2026          Week 8 Year to date  Local authority    E92000001
#> 4647        2026          Week 8 Year to date  Local authority    E92000001
#> 4648        2026          Week 8 Year to date  Local authority    E92000001
#> 4649        2026          Week 8 Year to date  Local authority    E92000001
#> 4650        2026          Week 8 Year to date  Local authority    E92000001
#> 4651        2026          Week 8 Year to date  Local authority    E92000001
#> 4652        2026          Week 8 Year to date  Local authority    E92000001
#> 4653        2026          Week 8 Year to date  Local authority    E92000001
#> 4654        2026          Week 8 Year to date  Local authority    E92000001
#> 4655        2026          Week 8 Year to date  Local authority    E92000001
#> 4656        2026          Week 8 Year to date  Local authority    E92000001
#> 4657        2026          Week 8 Year to date  Local authority    E92000001
#> 4658        2026          Week 8 Year to date  Local authority    E92000001
#> 4659        2026          Week 8 Year to date  Local authority    E92000001
#> 4660        2026          Week 8 Year to date  Local authority    E92000001
#> 4661        2026          Week 8 Year to date  Local authority    E92000001
#> 4662        2026          Week 8 Year to date  Local authority    E92000001
#> 4663        2026          Week 8 Year to date  Local authority    E92000001
#> 4664        2026          Week 8 Year to date  Local authority    E92000001
#> 4665        2026          Week 8 Year to date  Local authority    E92000001
#> 4666        2026          Week 8 Year to date  Local authority    E92000001
#> 4667        2026          Week 8 Year to date  Local authority    E92000001
#> 4668        2026          Week 8 Year to date  Local authority    E92000001
#> 4669        2026          Week 8 Year to date  Local authority    E92000001
#> 4670        2026          Week 8 Year to date  Local authority    E92000001
#> 4671        2026          Week 8 Year to date  Local authority    E92000001
#> 4672        2026          Week 8 Year to date  Local authority    E92000001
#> 4673        2026          Week 8 Year to date  Local authority    E92000001
#> 4674        2026          Week 8 Year to date  Local authority    E92000001
#> 4675        2026          Week 8 Year to date  Local authority    E92000001
#> 4676        2026          Week 8 Year to date  Local authority    E92000001
#> 4677        2026          Week 8 Year to date  Local authority    E92000001
#> 4678        2026          Week 8 Year to date  Local authority    E92000001
#> 4679        2026          Week 8 Year to date  Local authority    E92000001
#> 4680        2026          Week 8 Year to date  Local authority    E92000001
#> 4681        2026          Week 8 Year to date  Local authority    E92000001
#> 4682        2026          Week 8 Year to date  Local authority    E92000001
#> 4683        2026          Week 8 Year to date  Local authority    E92000001
#> 4684        2026          Week 8 Year to date  Local authority    E92000001
#> 4685        2026          Week 8 Year to date  Local authority    E92000001
#> 4686        2026          Week 8 Year to date         Regional    E92000001
#> 4687        2026          Week 8 Year to date         Regional    E92000001
#> 4688        2026          Week 8 Year to date         Regional    E92000001
#> 4689        2026          Week 8 Year to date         Regional    E92000001
#> 4690        2026          Week 8 Year to date  Local authority    E92000001
#> 4691        2026          Week 8 Year to date  Local authority    E92000001
#> 4692        2026          Week 8 Year to date  Local authority    E92000001
#> 4693        2026          Week 8 Year to date  Local authority    E92000001
#> 4694        2026          Week 8 Year to date  Local authority    E92000001
#> 4695        2026          Week 8 Year to date  Local authority    E92000001
#> 4696        2026          Week 8 Year to date  Local authority    E92000001
#> 4697        2026          Week 8 Year to date  Local authority    E92000001
#> 4698        2026          Week 8 Year to date  Local authority    E92000001
#> 4699        2026          Week 8 Year to date  Local authority    E92000001
#> 4700        2026          Week 8 Year to date  Local authority    E92000001
#> 4701        2026          Week 8 Year to date  Local authority    E92000001
#> 4702        2026          Week 8 Year to date  Local authority    E92000001
#> 4703        2026          Week 8 Year to date  Local authority    E92000001
#> 4704        2026          Week 8 Year to date  Local authority    E92000001
#> 4705        2026          Week 8 Year to date  Local authority    E92000001
#> 4706        2026          Week 8 Year to date  Local authority    E92000001
#> 4707        2026          Week 8 Year to date  Local authority    E92000001
#> 4708        2026          Week 8 Year to date  Local authority    E92000001
#> 4709        2026          Week 8 Year to date  Local authority    E92000001
#> 4710        2026          Week 8 Year to date  Local authority    E92000001
#> 4711        2026          Week 8 Year to date  Local authority    E92000001
#> 4712        2026          Week 8 Year to date  Local authority    E92000001
#> 4713        2026          Week 8 Year to date  Local authority    E92000001
#> 4714        2026          Week 8 Year to date  Local authority    E92000001
#> 4715        2026          Week 8 Year to date  Local authority    E92000001
#> 4716        2026          Week 8 Year to date  Local authority    E92000001
#> 4717        2026          Week 8 Year to date  Local authority    E92000001
#> 4718        2026          Week 8 Year to date  Local authority    E92000001
#> 4719        2026          Week 8 Year to date  Local authority    E92000001
#> 4720        2026          Week 8 Year to date  Local authority    E92000001
#> 4721        2026          Week 8 Year to date  Local authority    E92000001
#> 4722        2026          Week 8 Year to date  Local authority    E92000001
#> 4723        2026          Week 8 Year to date  Local authority    E92000001
#> 4724        2026          Week 8 Year to date  Local authority    E92000001
#> 4725        2026          Week 8 Year to date  Local authority    E92000001
#> 4726        2026          Week 8 Year to date  Local authority    E92000001
#> 4727        2026          Week 8 Year to date  Local authority    E92000001
#> 4728        2026          Week 8 Year to date  Local authority    E92000001
#> 4729        2026          Week 8 Year to date  Local authority    E92000001
#> 4730        2026          Week 8 Year to date  Local authority    E92000001
#> 4731        2026          Week 8 Year to date  Local authority    E92000001
#> 4732        2026          Week 8 Year to date  Local authority    E92000001
#> 4733        2026          Week 8 Year to date  Local authority    E92000001
#> 4734        2026          Week 8 Year to date  Local authority    E92000001
#> 4735        2026          Week 8 Year to date  Local authority    E92000001
#> 4736        2026          Week 8 Year to date  Local authority    E92000001
#> 4737        2026          Week 8 Year to date  Local authority    E92000001
#> 4738        2026          Week 8 Year to date  Local authority    E92000001
#> 4739        2026          Week 8 Year to date  Local authority    E92000001
#> 4740        2026          Week 8 Year to date  Local authority    E92000001
#> 4741        2026          Week 8 Year to date  Local authority    E92000001
#> 4742        2026          Week 8 Year to date  Local authority    E92000001
#> 4743        2026          Week 8 Year to date  Local authority    E92000001
#> 4744        2026          Week 8 Year to date  Local authority    E92000001
#> 4745        2026          Week 8 Year to date  Local authority    E92000001
#> 4746        2026          Week 8 Year to date  Local authority    E92000001
#> 4747        2026          Week 8 Year to date  Local authority    E92000001
#> 4748        2026          Week 8 Year to date  Local authority    E92000001
#> 4749        2026          Week 8 Year to date  Local authority    E92000001
#> 4750        2026          Week 8 Year to date         Regional    E92000001
#> 4751        2026          Week 8 Year to date         Regional    E92000001
#> 4752        2026          Week 8 Year to date         Regional    E92000001
#> 4753        2026          Week 8 Year to date         Regional    E92000001
#> 4754        2026          Week 8 Year to date  Local authority    E92000001
#> 4755        2026          Week 8 Year to date  Local authority    E92000001
#> 4756        2026          Week 8 Year to date  Local authority    E92000001
#> 4757        2026          Week 8 Year to date  Local authority    E92000001
#> 4758        2026          Week 8 Year to date  Local authority    E92000001
#> 4759        2026          Week 8 Year to date  Local authority    E92000001
#> 4760        2026          Week 8 Year to date  Local authority    E92000001
#> 4761        2026          Week 8 Year to date  Local authority    E92000001
#> 4762        2026          Week 8 Year to date  Local authority    E92000001
#> 4763        2026          Week 8 Year to date  Local authority    E92000001
#> 4764        2026          Week 8 Year to date  Local authority    E92000001
#> 4765        2026          Week 8 Year to date  Local authority    E92000001
#> 4766        2026          Week 8 Year to date  Local authority    E92000001
#> 4767        2026          Week 8 Year to date  Local authority    E92000001
#> 4768        2026          Week 8 Year to date  Local authority    E92000001
#> 4769        2026          Week 8 Year to date  Local authority    E92000001
#> 4770        2026          Week 8 Year to date  Local authority    E92000001
#> 4771        2026          Week 8 Year to date  Local authority    E92000001
#> 4772        2026          Week 8 Year to date  Local authority    E92000001
#> 4773        2026          Week 8 Year to date  Local authority    E92000001
#> 4774        2026          Week 8 Year to date  Local authority    E92000001
#> 4775        2026          Week 8 Year to date  Local authority    E92000001
#> 4776        2026          Week 8 Year to date  Local authority    E92000001
#> 4777        2026          Week 8 Year to date  Local authority    E92000001
#> 4778        2026          Week 8 Year to date  Local authority    E92000001
#> 4779        2026          Week 8 Year to date  Local authority    E92000001
#> 4780        2026          Week 8 Year to date  Local authority    E92000001
#> 4781        2026          Week 8 Year to date  Local authority    E92000001
#> 4782        2026          Week 8 Year to date  Local authority    E92000001
#> 4783        2026          Week 8 Year to date  Local authority    E92000001
#> 4784        2026          Week 8 Year to date  Local authority    E92000001
#> 4785        2026          Week 8 Year to date  Local authority    E92000001
#> 4786        2026          Week 8 Year to date  Local authority    E92000001
#> 4787        2026          Week 8 Year to date  Local authority    E92000001
#> 4788        2026          Week 8 Year to date  Local authority    E92000001
#> 4789        2026          Week 8 Year to date  Local authority    E92000001
#> 4790        2026          Week 8 Year to date  Local authority    E92000001
#> 4791        2026          Week 8 Year to date  Local authority    E92000001
#> 4792        2026          Week 8 Year to date  Local authority    E92000001
#> 4793        2026          Week 8 Year to date         Regional    E92000001
#> 4794        2026          Week 8 Year to date         Regional    E92000001
#> 4795        2026          Week 8 Year to date         Regional    E92000001
#> 4796        2026          Week 8 Year to date         Regional    E92000001
#> 4797        2026          Week 8 Year to date  Local authority    E92000001
#> 4798        2026          Week 8 Year to date  Local authority    E92000001
#> 4799        2026          Week 8 Year to date  Local authority    E92000001
#> 4800        2026          Week 8 Year to date  Local authority    E92000001
#> 4801        2026          Week 8 Year to date  Local authority    E92000001
#> 4802        2026          Week 8 Year to date  Local authority    E92000001
#> 4803        2026          Week 8 Year to date  Local authority    E92000001
#> 4804        2026          Week 8 Year to date  Local authority    E92000001
#> 4805        2026          Week 8 Year to date  Local authority    E92000001
#> 4806        2026          Week 8 Year to date  Local authority    E92000001
#> 4807        2026          Week 8 Year to date  Local authority    E92000001
#> 4808        2026          Week 8 Year to date  Local authority    E92000001
#> 4809        2026          Week 8 Year to date  Local authority    E92000001
#> 4810        2026          Week 8 Year to date  Local authority    E92000001
#> 4811        2026          Week 8 Year to date  Local authority    E92000001
#> 4812        2026          Week 8 Year to date  Local authority    E92000001
#> 4813        2026          Week 8 Year to date  Local authority    E92000001
#> 4814        2026          Week 8 Year to date  Local authority    E92000001
#> 4815        2026          Week 8 Year to date  Local authority    E92000001
#> 4816        2026          Week 8 Year to date  Local authority    E92000001
#> 4817        2026          Week 8 Year to date  Local authority    E92000001
#> 4818        2026          Week 8 Year to date  Local authority    E92000001
#> 4819        2026          Week 8 Year to date  Local authority    E92000001
#> 4820        2026          Week 8 Year to date  Local authority    E92000001
#> 4821        2026          Week 8 Year to date  Local authority    E92000001
#> 4822        2026          Week 8 Year to date  Local authority    E92000001
#> 4823        2026          Week 8 Year to date  Local authority    E92000001
#> 4824        2026          Week 8 Year to date  Local authority    E92000001
#> 4825        2026          Week 8 Year to date  Local authority    E92000001
#> 4826        2026          Week 8 Year to date  Local authority    E92000001
#> 4827        2026          Week 8 Year to date  Local authority    E92000001
#> 4828        2026          Week 8 Year to date  Local authority    E92000001
#> 4829        2026          Week 8 Year to date  Local authority    E92000001
#> 4830        2026          Week 8 Year to date  Local authority    E92000001
#> 4831        2026          Week 8 Year to date  Local authority    E92000001
#> 4832        2026          Week 8 Year to date  Local authority    E92000001
#> 4833        2026          Week 8 Year to date  Local authority    E92000001
#> 4834        2026          Week 8 Year to date  Local authority    E92000001
#> 4835        2026          Week 8 Year to date  Local authority    E92000001
#> 4836        2026          Week 8 Year to date  Local authority    E92000001
#> 4837        2026          Week 8 Year to date  Local authority    E92000001
#> 4838        2026          Week 8 Year to date  Local authority    E92000001
#> 4839        2026          Week 8 Year to date  Local authority    E92000001
#> 4840        2026          Week 8 Year to date  Local authority    E92000001
#> 4841        2026          Week 8 Year to date  Local authority    E92000001
#> 4842        2026          Week 8 Year to date  Local authority    E92000001
#> 4843        2026          Week 8 Year to date  Local authority    E92000001
#> 4844        2026          Week 8 Year to date  Local authority    E92000001
#> 4845        2026          Week 8 Year to date  Local authority    E92000001
#> 4846        2026          Week 8 Year to date  Local authority    E92000001
#> 4847        2026          Week 8 Year to date  Local authority    E92000001
#> 4848        2026          Week 8 Year to date  Local authority    E92000001
#> 4849        2026          Week 8 Year to date  Local authority    E92000001
#> 4850        2026          Week 8 Year to date  Local authority    E92000001
#> 4851        2026          Week 8 Year to date  Local authority    E92000001
#> 4852        2026          Week 8 Year to date  Local authority    E92000001
#> 4853        2026          Week 8 Year to date         Regional    E92000001
#> 4854        2026          Week 8 Year to date         Regional    E92000001
#> 4855        2026          Week 8 Year to date         Regional    E92000001
#> 4856        2026          Week 8 Year to date         Regional    E92000001
#> 4857        2026          Week 8 Year to date  Local authority    E92000001
#> 4858        2026          Week 8 Year to date  Local authority    E92000001
#> 4859        2026          Week 8 Year to date  Local authority    E92000001
#> 4860        2026          Week 8 Year to date  Local authority    E92000001
#> 4861        2026          Week 8 Year to date  Local authority    E92000001
#> 4862        2026          Week 8 Year to date  Local authority    E92000001
#> 4863        2026          Week 8 Year to date  Local authority    E92000001
#> 4864        2026          Week 8 Year to date  Local authority    E92000001
#> 4865        2026          Week 8 Year to date  Local authority    E92000001
#> 4866        2026          Week 8 Year to date  Local authority    E92000001
#> 4867        2026          Week 8 Year to date  Local authority    E92000001
#> 4868        2026          Week 8 Year to date  Local authority    E92000001
#> 4869        2026          Week 8 Year to date  Local authority    E92000001
#> 4870        2026          Week 8 Year to date  Local authority    E92000001
#> 4871        2026          Week 8 Year to date  Local authority    E92000001
#> 4872        2026          Week 8 Year to date  Local authority    E92000001
#> 4873        2026          Week 8 Year to date  Local authority    E92000001
#> 4874        2026          Week 8 Year to date  Local authority    E92000001
#> 4875        2026          Week 8 Year to date  Local authority    E92000001
#> 4876        2026          Week 8 Year to date  Local authority    E92000001
#> 4877        2026          Week 8 Year to date  Local authority    E92000001
#> 4878        2026          Week 8 Year to date  Local authority    E92000001
#> 4879        2026          Week 8 Year to date  Local authority    E92000001
#> 4880        2026          Week 8 Year to date  Local authority    E92000001
#> 4881        2026          Week 8 Year to date  Local authority    E92000001
#> 4882        2026          Week 8 Year to date  Local authority    E92000001
#> 4883        2026          Week 8 Year to date  Local authority    E92000001
#> 4884        2026          Week 8 Year to date  Local authority    E92000001
#> 4885        2026          Week 8 Year to date  Local authority    E92000001
#> 4886        2026          Week 8 Year to date  Local authority    E92000001
#> 4887        2026          Week 8 Year to date  Local authority    E92000001
#> 4888        2026          Week 8 Year to date  Local authority    E92000001
#> 4889        2026          Week 8 Year to date  Local authority    E92000001
#> 4890        2026          Week 8 Year to date  Local authority    E92000001
#> 4891        2026          Week 8 Year to date  Local authority    E92000001
#> 4892        2026          Week 8 Year to date  Local authority    E92000001
#> 4893        2026          Week 8 Year to date  Local authority    E92000001
#> 4894        2026          Week 8 Year to date  Local authority    E92000001
#> 4895        2026          Week 8 Year to date  Local authority    E92000001
#> 4896        2026          Week 8 Year to date  Local authority    E92000001
#> 4897        2026          Week 8 Year to date  Local authority    E92000001
#> 4898        2026          Week 8 Year to date  Local authority    E92000001
#> 4899        2026          Week 8 Year to date  Local authority    E92000001
#> 4900        2026          Week 8 Year to date  Local authority    E92000001
#> 4901        2026          Week 8 Year to date         Regional    E92000001
#> 4902        2026          Week 8 Year to date         Regional    E92000001
#> 4903        2026          Week 8 Year to date         Regional    E92000001
#> 4904        2026          Week 8 Year to date         Regional    E92000001
#> 4905        2026          Week 8 Year to date  Local authority    E92000001
#> 4906        2026          Week 8 Year to date  Local authority    E92000001
#> 4907        2026          Week 8 Year to date  Local authority    E92000001
#> 4908        2026          Week 8 Year to date  Local authority    E92000001
#> 4909        2026          Week 8 Year to date  Local authority    E92000001
#> 4910        2026          Week 8 Year to date  Local authority    E92000001
#> 4911        2026          Week 8 Year to date  Local authority    E92000001
#> 4912        2026          Week 8 Year to date  Local authority    E92000001
#> 4913        2026          Week 8 Year to date  Local authority    E92000001
#> 4914        2026          Week 8 Year to date  Local authority    E92000001
#> 4915        2026          Week 8 Year to date  Local authority    E92000001
#> 4916        2026          Week 8 Year to date  Local authority    E92000001
#> 4917        2026          Week 8 Year to date  Local authority    E92000001
#> 4918        2026          Week 8 Year to date  Local authority    E92000001
#> 4919        2026          Week 8 Year to date  Local authority    E92000001
#> 4920        2026          Week 8 Year to date  Local authority    E92000001
#> 4921        2026          Week 8 Year to date  Local authority    E92000001
#> 4922        2026          Week 8 Year to date  Local authority    E92000001
#> 4923        2026          Week 8 Year to date  Local authority    E92000001
#> 4924        2026          Week 8 Year to date  Local authority    E92000001
#> 4925        2026          Week 8 Year to date  Local authority    E92000001
#> 4926        2026          Week 8 Year to date  Local authority    E92000001
#> 4927        2026          Week 8 Year to date  Local authority    E92000001
#> 4928        2026          Week 8 Year to date  Local authority    E92000001
#> 4929        2026          Week 8 Year to date  Local authority    E92000001
#> 4930        2026          Week 8 Year to date  Local authority    E92000001
#> 4931        2026          Week 8 Year to date  Local authority    E92000001
#> 4932        2026          Week 8 Year to date  Local authority    E92000001
#> 4933        2026          Week 8 Year to date  Local authority    E92000001
#> 4934        2026          Week 8 Year to date  Local authority    E92000001
#> 4935        2026          Week 8 Year to date  Local authority    E92000001
#> 4936        2026          Week 8 Year to date  Local authority    E92000001
#> 4937        2026          Week 8 Year to date  Local authority    E92000001
#> 4938        2026          Week 8 Year to date  Local authority    E92000001
#> 4939        2026          Week 8 Year to date  Local authority    E92000001
#> 4940        2026          Week 8 Year to date  Local authority    E92000001
#> 4941        2026          Week 8 Year to date  Local authority    E92000001
#> 4942        2026          Week 8 Year to date  Local authority    E92000001
#> 4943        2026          Week 8 Year to date  Local authority    E92000001
#> 4944        2026          Week 8 Year to date  Local authority    E92000001
#> 4945        2026          Week 8 Year to date  Local authority    E92000001
#> 4946        2026          Week 8 Year to date  Local authority    E92000001
#> 4947        2026          Week 8 Year to date  Local authority    E92000001
#> 4948        2026          Week 8 Year to date  Local authority    E92000001
#> 4949        2026          Week 8 Year to date  Local authority    E92000001
#> 4950        2026          Week 8 Year to date  Local authority    E92000001
#> 4951        2026          Week 8 Year to date  Local authority    E92000001
#> 4952        2026          Week 8 Year to date  Local authority    E92000001
#> 4953        2026          Week 8 Year to date  Local authority    E92000001
#> 4954        2026          Week 8 Year to date  Local authority    E92000001
#> 4955        2026          Week 8 Year to date  Local authority    E92000001
#> 4956        2026          Week 8 Year to date  Local authority    E92000001
#> 4957        2026          Week 8 Year to date  Local authority    E92000001
#> 4958        2026          Week 8 Year to date  Local authority    E92000001
#> 4959        2026          Week 8 Year to date  Local authority    E92000001
#> 4960        2026          Week 8 Year to date  Local authority    E92000001
#> 4961        2026          Week 8 Year to date  Local authority    E92000001
#> 4962        2026          Week 8 Year to date  Local authority    E92000001
#> 4963        2026          Week 8 Year to date  Local authority    E92000001
#> 4964        2026          Week 8 Year to date  Local authority    E92000001
#> 4965        2026          Week 8 Year to date  Local authority    E92000001
#> 4966        2026          Week 8 Year to date  Local authority    E92000001
#> 4967        2026          Week 8 Year to date  Local authority    E92000001
#> 4968        2026          Week 8 Year to date  Local authority    E92000001
#> 4969        2026          Week 8 Year to date  Local authority    E92000001
#> 4970        2026          Week 8 Year to date  Local authority    E92000001
#> 4971        2026          Week 8 Year to date  Local authority    E92000001
#> 4972        2026          Week 8 Year to date  Local authority    E92000001
#> 4973        2026          Week 8 Year to date  Local authority    E92000001
#> 4974        2026          Week 8 Year to date  Local authority    E92000001
#> 4975        2026          Week 8 Year to date  Local authority    E92000001
#> 4976        2026          Week 8 Year to date  Local authority    E92000001
#> 4977        2026          Week 8 Year to date  Local authority    E92000001
#> 4978        2026          Week 8 Year to date  Local authority    E92000001
#> 4979        2026          Week 8 Year to date  Local authority    E92000001
#> 4980        2026          Week 8 Year to date  Local authority    E92000001
#> 4981        2026          Week 8 Year to date  Local authority    E92000001
#> 4982        2026          Week 8 Year to date  Local authority    E92000001
#> 4983        2026          Week 8 Year to date  Local authority    E92000001
#> 4984        2026          Week 8 Year to date  Local authority    E92000001
#> 4985        2026          Week 8 Year to date  Local authority    E92000001
#> 4986        2026          Week 8 Year to date  Local authority    E92000001
#> 4987        2026          Week 8 Year to date  Local authority    E92000001
#> 4988        2026          Week 8 Year to date  Local authority    E92000001
#> 4989        2026          Week 8 Year to date  Local authority    E92000001
#> 4990        2026          Week 8 Year to date  Local authority    E92000001
#> 4991        2026          Week 8 Year to date  Local authority    E92000001
#> 4992        2026          Week 8 Year to date  Local authority    E92000001
#> 4993        2026          Week 8 Year to date  Local authority    E92000001
#> 4994        2026          Week 8 Year to date  Local authority    E92000001
#> 4995        2026          Week 8 Year to date  Local authority    E92000001
#> 4996        2026          Week 8 Year to date  Local authority    E92000001
#> 4997        2026          Week 8 Year to date  Local authority    E92000001
#> 4998        2026          Week 8 Year to date  Local authority    E92000001
#> 4999        2026          Week 8 Year to date  Local authority    E92000001
#> 5000        2026          Week 8 Year to date  Local authority    E92000001
#> 5001        2026          Week 8 Year to date  Local authority    E92000001
#> 5002        2026          Week 8 Year to date  Local authority    E92000001
#> 5003        2026          Week 8 Year to date  Local authority    E92000001
#> 5004        2026          Week 8 Year to date  Local authority    E92000001
#> 5005        2026          Week 8 Year to date  Local authority    E92000001
#> 5006        2026          Week 8 Year to date  Local authority    E92000001
#> 5007        2026          Week 8 Year to date  Local authority    E92000001
#> 5008        2026          Week 8 Year to date  Local authority    E92000001
#> 5009        2026          Week 8 Year to date  Local authority    E92000001
#> 5010        2026          Week 8 Year to date  Local authority    E92000001
#> 5011        2026          Week 8 Year to date  Local authority    E92000001
#> 5012        2026          Week 8 Year to date  Local authority    E92000001
#> 5013        2026          Week 8 Year to date  Local authority    E92000001
#> 5014        2026          Week 8 Year to date  Local authority    E92000001
#> 5015        2026          Week 8 Year to date  Local authority    E92000001
#> 5016        2026          Week 8 Year to date  Local authority    E92000001
#> 5017        2026          Week 8 Year to date  Local authority    E92000001
#> 5018        2026          Week 8 Year to date  Local authority    E92000001
#> 5019        2026          Week 8 Year to date  Local authority    E92000001
#> 5020        2026          Week 8 Year to date  Local authority    E92000001
#> 5021        2026          Week 8 Year to date  Local authority    E92000001
#> 5022        2026          Week 8 Year to date  Local authority    E92000001
#> 5023        2026          Week 8 Year to date  Local authority    E92000001
#> 5024        2026          Week 8 Year to date  Local authority    E92000001
#> 5025        2026          Week 8 Year to date  Local authority    E92000001
#> 5026        2026          Week 8 Year to date  Local authority    E92000001
#> 5027        2026          Week 8 Year to date  Local authority    E92000001
#> 5028        2026          Week 8 Year to date  Local authority    E92000001
#> 5029        2026          Week 8 Year to date  Local authority    E92000001
#> 5030        2026          Week 8 Year to date  Local authority    E92000001
#> 5031        2026          Week 8 Year to date  Local authority    E92000001
#> 5032        2026          Week 8 Year to date  Local authority    E92000001
#> 5033        2026          Week 8 Year to date  Local authority    E92000001
#> 5034        2026          Week 8 Year to date  Local authority    E92000001
#> 5035        2026          Week 8 Year to date         Regional    E92000001
#> 5036        2026          Week 8 Year to date         Regional    E92000001
#> 5037        2026          Week 8 Year to date         Regional    E92000001
#> 5038        2026          Week 8 Year to date         Regional    E92000001
#> 5039        2026          Week 8 Year to date  Local authority    E92000001
#> 5040        2026          Week 8 Year to date  Local authority    E92000001
#> 5041        2026          Week 8 Year to date  Local authority    E92000001
#> 5042        2026          Week 8 Year to date  Local authority    E92000001
#> 5043        2026          Week 8 Year to date  Local authority    E92000001
#> 5044        2026          Week 8 Year to date  Local authority    E92000001
#> 5045        2026          Week 8 Year to date  Local authority    E92000001
#> 5046        2026          Week 8 Year to date  Local authority    E92000001
#> 5047        2026          Week 8 Year to date  Local authority    E92000001
#> 5048        2026          Week 8 Year to date  Local authority    E92000001
#> 5049        2026          Week 8 Year to date  Local authority    E92000001
#> 5050        2026          Week 8 Year to date  Local authority    E92000001
#> 5051        2026          Week 8 Year to date  Local authority    E92000001
#> 5052        2026          Week 8 Year to date  Local authority    E92000001
#> 5053        2026          Week 8 Year to date  Local authority    E92000001
#> 5054        2026          Week 8 Year to date  Local authority    E92000001
#> 5055        2026          Week 8 Year to date  Local authority    E92000001
#> 5056        2026          Week 8 Year to date  Local authority    E92000001
#> 5057        2026          Week 8 Year to date  Local authority    E92000001
#> 5058        2026          Week 8 Year to date  Local authority    E92000001
#> 5059        2026          Week 8 Year to date  Local authority    E92000001
#> 5060        2026          Week 8 Year to date  Local authority    E92000001
#> 5061        2026          Week 8 Year to date  Local authority    E92000001
#> 5062        2026          Week 8 Year to date  Local authority    E92000001
#> 5063        2026          Week 8 Year to date  Local authority    E92000001
#> 5064        2026          Week 8 Year to date  Local authority    E92000001
#> 5065        2026          Week 8 Year to date  Local authority    E92000001
#> 5066        2026          Week 8 Year to date  Local authority    E92000001
#> 5067        2026          Week 8 Year to date  Local authority    E92000001
#> 5068        2026          Week 8 Year to date  Local authority    E92000001
#> 5069        2026          Week 8 Year to date  Local authority    E92000001
#> 5070        2026          Week 8 Year to date  Local authority    E92000001
#> 5071        2026          Week 8 Year to date  Local authority    E92000001
#> 5072        2026          Week 8 Year to date  Local authority    E92000001
#> 5073        2026          Week 8 Year to date  Local authority    E92000001
#> 5074        2026          Week 8 Year to date  Local authority    E92000001
#> 5075        2026          Week 8 Year to date  Local authority    E92000001
#> 5076        2026          Week 8 Year to date  Local authority    E92000001
#> 5077        2026          Week 8 Year to date  Local authority    E92000001
#> 5078        2026          Week 8 Year to date  Local authority    E92000001
#> 5079        2026          Week 8 Year to date  Local authority    E92000001
#> 5080        2026          Week 8 Year to date  Local authority    E92000001
#> 5081        2026          Week 8 Year to date  Local authority    E92000001
#> 5082        2026          Week 8 Year to date  Local authority    E92000001
#> 5083        2026          Week 8 Year to date  Local authority    E92000001
#> 5084        2026          Week 8 Year to date  Local authority    E92000001
#> 5085        2026          Week 8 Year to date  Local authority    E92000001
#> 5086        2026          Week 8 Year to date  Local authority    E92000001
#> 5087        2026          Week 8 Year to date  Local authority    E92000001
#> 5088        2026          Week 8 Year to date  Local authority    E92000001
#> 5089        2026          Week 8 Year to date  Local authority    E92000001
#> 5090        2026          Week 8 Year to date  Local authority    E92000001
#> 5091        2026          Week 8 Year to date  Local authority    E92000001
#> 5092        2026          Week 8 Year to date  Local authority    E92000001
#> 5093        2026          Week 8 Year to date  Local authority    E92000001
#> 5094        2026          Week 8 Year to date  Local authority    E92000001
#> 5095        2026          Week 8 Year to date  Local authority    E92000001
#> 5096        2026          Week 8 Year to date  Local authority    E92000001
#> 5097        2026          Week 8 Year to date  Local authority    E92000001
#> 5098        2026          Week 8 Year to date  Local authority    E92000001
#> 5099        2026          Week 8 Year to date  Local authority    E92000001
#> 5100        2026          Week 8 Year to date  Local authority    E92000001
#> 5101        2026          Week 8 Year to date  Local authority    E92000001
#> 5102        2026          Week 8 Year to date  Local authority    E92000001
#> 5103        2026          Week 8 Year to date  Local authority    E92000001
#> 5104        2026          Week 8 Year to date  Local authority    E92000001
#> 5105        2026          Week 8 Year to date  Local authority    E92000001
#> 5106        2026          Week 8 Year to date  Local authority    E92000001
#> 5107        2026          Week 8 Year to date  Local authority    E92000001
#> 5108        2026          Week 8 Year to date  Local authority    E92000001
#> 5109        2026          Week 8 Year to date  Local authority    E92000001
#> 5110        2026          Week 8 Year to date  Local authority    E92000001
#> 5111        2026          Week 8 Year to date  Local authority    E92000001
#> 5112        2026          Week 8 Year to date  Local authority    E92000001
#> 5113        2026          Week 8 Year to date  Local authority    E92000001
#> 5114        2026          Week 8 Year to date  Local authority    E92000001
#> 5115        2026          Week 8 Year to date         Regional    E92000001
#> 5116        2026          Week 8 Year to date         Regional    E92000001
#> 5117        2026          Week 8 Year to date         Regional    E92000001
#> 5118        2026          Week 8 Year to date         Regional    E92000001
#> 5119        2026          Week 8 Year to date  Local authority    E92000001
#> 5120        2026          Week 8 Year to date  Local authority    E92000001
#> 5121        2026          Week 8 Year to date  Local authority    E92000001
#> 5122        2026          Week 8 Year to date  Local authority    E92000001
#> 5123        2026          Week 8 Year to date  Local authority    E92000001
#> 5124        2026          Week 8 Year to date  Local authority    E92000001
#> 5125        2026          Week 8 Year to date  Local authority    E92000001
#> 5126        2026          Week 8 Year to date  Local authority    E92000001
#> 5127        2026          Week 8 Year to date  Local authority    E92000001
#> 5128        2026          Week 8 Year to date  Local authority    E92000001
#> 5129        2026          Week 8 Year to date  Local authority    E92000001
#> 5130        2026          Week 8 Year to date  Local authority    E92000001
#> 5131        2026          Week 8 Year to date  Local authority    E92000001
#> 5132        2026          Week 8 Year to date  Local authority    E92000001
#> 5133        2026          Week 8 Year to date  Local authority    E92000001
#> 5134        2026          Week 8 Year to date  Local authority    E92000001
#> 5135        2026          Week 8 Year to date  Local authority    E92000001
#> 5136        2026          Week 8 Year to date  Local authority    E92000001
#> 5137        2026          Week 8 Year to date  Local authority    E92000001
#> 5138        2026          Week 8 Year to date  Local authority    E92000001
#> 5139        2026          Week 8 Year to date  Local authority    E92000001
#> 5140        2026          Week 8 Year to date  Local authority    E92000001
#> 5141        2026          Week 8 Year to date  Local authority    E92000001
#> 5142        2026          Week 8 Year to date  Local authority    E92000001
#> 5143        2026          Week 8 Year to date  Local authority    E92000001
#> 5144        2026          Week 8 Year to date  Local authority    E92000001
#> 5145        2026          Week 8 Year to date  Local authority    E92000001
#> 5146        2026          Week 8 Year to date  Local authority    E92000001
#> 5147        2026          Week 8 Year to date  Local authority    E92000001
#> 5148        2026          Week 8 Year to date  Local authority    E92000001
#> 5149        2026          Week 8 Year to date  Local authority    E92000001
#> 5150        2026          Week 8 Year to date  Local authority    E92000001
#> 5151        2026          Week 8 Year to date  Local authority    E92000001
#> 5152        2026          Week 8 Year to date  Local authority    E92000001
#> 5153        2026          Week 8 Year to date  Local authority    E92000001
#> 5154        2026          Week 8 Year to date  Local authority    E92000001
#> 5155        2026          Week 8 Year to date  Local authority    E92000001
#> 5156        2026          Week 8 Year to date  Local authority    E92000001
#> 5157        2026          Week 8 Year to date  Local authority    E92000001
#> 5158        2026          Week 8 Year to date  Local authority    E92000001
#> 5159        2026          Week 8 Year to date  Local authority    E92000001
#> 5160        2026          Week 8 Year to date  Local authority    E92000001
#> 5161        2026          Week 8 Year to date  Local authority    E92000001
#> 5162        2026          Week 8 Year to date  Local authority    E92000001
#> 5163        2026          Week 8 Year to date  Local authority    E92000001
#> 5164        2026          Week 8 Year to date  Local authority    E92000001
#> 5165        2026          Week 8 Year to date  Local authority    E92000001
#> 5166        2026          Week 8 Year to date  Local authority    E92000001
#> 5167        2026          Week 8 Year to date  Local authority    E92000001
#> 5168        2026          Week 8 Year to date  Local authority    E92000001
#> 5169        2026          Week 8 Year to date  Local authority    E92000001
#> 5170        2026          Week 8 Year to date  Local authority    E92000001
#> 5171        2026          Week 8 Year to date  Local authority    E92000001
#> 5172        2026          Week 8 Year to date  Local authority    E92000001
#> 5173        2026          Week 8 Year to date  Local authority    E92000001
#> 5174        2026          Week 8 Year to date  Local authority    E92000001
#> 5175        2026          Week 8 Year to date  Local authority    E92000001
#> 5176        2026          Week 8 Year to date  Local authority    E92000001
#> 5177        2026          Week 6 Year to date         National    E92000001
#> 5178        2026          Week 6 Year to date         National    E92000001
#> 5179        2026          Week 6 Year to date         National    E92000001
#> 5180        2026          Week 6 Year to date         National    E92000001
#> 5181        2026          Week 6 Year to date         Regional    E92000001
#> 5182        2026          Week 6 Year to date         Regional    E92000001
#> 5183        2026          Week 6 Year to date         Regional    E92000001
#> 5184        2026          Week 6 Year to date         Regional    E92000001
#> 5185        2026          Week 6 Year to date  Local authority    E92000001
#> 5186        2026          Week 6 Year to date  Local authority    E92000001
#> 5187        2026          Week 6 Year to date  Local authority    E92000001
#> 5188        2026          Week 6 Year to date  Local authority    E92000001
#> 5189        2026          Week 6 Year to date  Local authority    E92000001
#> 5190        2026          Week 6 Year to date  Local authority    E92000001
#> 5191        2026          Week 6 Year to date  Local authority    E92000001
#> 5192        2026          Week 6 Year to date  Local authority    E92000001
#> 5193        2026          Week 6 Year to date  Local authority    E92000001
#> 5194        2026          Week 6 Year to date  Local authority    E92000001
#> 5195        2026          Week 6 Year to date  Local authority    E92000001
#> 5196        2026          Week 6 Year to date  Local authority    E92000001
#> 5197        2026          Week 6 Year to date  Local authority    E92000001
#> 5198        2026          Week 6 Year to date  Local authority    E92000001
#> 5199        2026          Week 6 Year to date  Local authority    E92000001
#> 5200        2026          Week 6 Year to date  Local authority    E92000001
#> 5201        2026          Week 6 Year to date  Local authority    E92000001
#> 5202        2026          Week 6 Year to date  Local authority    E92000001
#> 5203        2026          Week 6 Year to date  Local authority    E92000001
#> 5204        2026          Week 6 Year to date  Local authority    E92000001
#> 5205        2026          Week 6 Year to date  Local authority    E92000001
#> 5206        2026          Week 6 Year to date  Local authority    E92000001
#> 5207        2026          Week 6 Year to date  Local authority    E92000001
#> 5208        2026          Week 6 Year to date  Local authority    E92000001
#> 5209        2026          Week 6 Year to date  Local authority    E92000001
#> 5210        2026          Week 6 Year to date  Local authority    E92000001
#> 5211        2026          Week 6 Year to date  Local authority    E92000001
#> 5212        2026          Week 6 Year to date  Local authority    E92000001
#> 5213        2026          Week 6 Year to date  Local authority    E92000001
#> 5214        2026          Week 6 Year to date  Local authority    E92000001
#> 5215        2026          Week 6 Year to date  Local authority    E92000001
#> 5216        2026          Week 6 Year to date  Local authority    E92000001
#> 5217        2026          Week 6 Year to date  Local authority    E92000001
#> 5218        2026          Week 6 Year to date  Local authority    E92000001
#> 5219        2026          Week 6 Year to date  Local authority    E92000001
#> 5220        2026          Week 6 Year to date  Local authority    E92000001
#> 5221        2026          Week 6 Year to date  Local authority    E92000001
#> 5222        2026          Week 6 Year to date  Local authority    E92000001
#> 5223        2026          Week 6 Year to date  Local authority    E92000001
#> 5224        2026          Week 6 Year to date  Local authority    E92000001
#> 5225        2026          Week 6 Year to date  Local authority    E92000001
#> 5226        2026          Week 6 Year to date  Local authority    E92000001
#> 5227        2026          Week 6 Year to date  Local authority    E92000001
#> 5228        2026          Week 6 Year to date  Local authority    E92000001
#> 5229        2026          Week 6 Year to date  Local authority    E92000001
#> 5230        2026          Week 6 Year to date  Local authority    E92000001
#> 5231        2026          Week 6 Year to date  Local authority    E92000001
#> 5232        2026          Week 6 Year to date  Local authority    E92000001
#> 5233        2026          Week 6 Year to date         Regional    E92000001
#> 5234        2026          Week 6 Year to date         Regional    E92000001
#> 5235        2026          Week 6 Year to date         Regional    E92000001
#> 5236        2026          Week 6 Year to date         Regional    E92000001
#> 5237        2026          Week 6 Year to date  Local authority    E92000001
#> 5238        2026          Week 6 Year to date  Local authority    E92000001
#> 5239        2026          Week 6 Year to date  Local authority    E92000001
#> 5240        2026          Week 6 Year to date  Local authority    E92000001
#> 5241        2026          Week 6 Year to date  Local authority    E92000001
#> 5242        2026          Week 6 Year to date  Local authority    E92000001
#> 5243        2026          Week 6 Year to date  Local authority    E92000001
#> 5244        2026          Week 6 Year to date  Local authority    E92000001
#> 5245        2026          Week 6 Year to date  Local authority    E92000001
#> 5246        2026          Week 6 Year to date  Local authority    E92000001
#> 5247        2026          Week 6 Year to date  Local authority    E92000001
#> 5248        2026          Week 6 Year to date  Local authority    E92000001
#> 5249        2026          Week 6 Year to date  Local authority    E92000001
#> 5250        2026          Week 6 Year to date  Local authority    E92000001
#> 5251        2026          Week 6 Year to date  Local authority    E92000001
#> 5252        2026          Week 6 Year to date  Local authority    E92000001
#> 5253        2026          Week 6 Year to date  Local authority    E92000001
#> 5254        2026          Week 6 Year to date  Local authority    E92000001
#> 5255        2026          Week 6 Year to date  Local authority    E92000001
#> 5256        2026          Week 6 Year to date  Local authority    E92000001
#> 5257        2026          Week 6 Year to date  Local authority    E92000001
#> 5258        2026          Week 6 Year to date  Local authority    E92000001
#> 5259        2026          Week 6 Year to date  Local authority    E92000001
#> 5260        2026          Week 6 Year to date  Local authority    E92000001
#> 5261        2026          Week 6 Year to date  Local authority    E92000001
#> 5262        2026          Week 6 Year to date  Local authority    E92000001
#> 5263        2026          Week 6 Year to date  Local authority    E92000001
#> 5264        2026          Week 6 Year to date  Local authority    E92000001
#> 5265        2026          Week 6 Year to date  Local authority    E92000001
#> 5266        2026          Week 6 Year to date  Local authority    E92000001
#> 5267        2026          Week 6 Year to date  Local authority    E92000001
#> 5268        2026          Week 6 Year to date  Local authority    E92000001
#> 5269        2026          Week 6 Year to date  Local authority    E92000001
#> 5270        2026          Week 6 Year to date  Local authority    E92000001
#> 5271        2026          Week 6 Year to date  Local authority    E92000001
#> 5272        2026          Week 6 Year to date  Local authority    E92000001
#> 5273        2026          Week 6 Year to date  Local authority    E92000001
#> 5274        2026          Week 6 Year to date  Local authority    E92000001
#> 5275        2026          Week 6 Year to date  Local authority    E92000001
#> 5276        2026          Week 6 Year to date  Local authority    E92000001
#> 5277        2026          Week 6 Year to date  Local authority    E92000001
#> 5278        2026          Week 6 Year to date  Local authority    E92000001
#> 5279        2026          Week 6 Year to date  Local authority    E92000001
#> 5280        2026          Week 6 Year to date  Local authority    E92000001
#> 5281        2026          Week 6 Year to date  Local authority    E92000001
#> 5282        2026          Week 6 Year to date  Local authority    E92000001
#> 5283        2026          Week 6 Year to date  Local authority    E92000001
#> 5284        2026          Week 6 Year to date  Local authority    E92000001
#> 5285        2026          Week 6 Year to date  Local authority    E92000001
#> 5286        2026          Week 6 Year to date  Local authority    E92000001
#> 5287        2026          Week 6 Year to date  Local authority    E92000001
#> 5288        2026          Week 6 Year to date  Local authority    E92000001
#> 5289        2026          Week 6 Year to date  Local authority    E92000001
#> 5290        2026          Week 6 Year to date  Local authority    E92000001
#> 5291        2026          Week 6 Year to date  Local authority    E92000001
#> 5292        2026          Week 6 Year to date  Local authority    E92000001
#> 5293        2026          Week 6 Year to date  Local authority    E92000001
#> 5294        2026          Week 6 Year to date  Local authority    E92000001
#> 5295        2026          Week 6 Year to date  Local authority    E92000001
#> 5296        2026          Week 6 Year to date  Local authority    E92000001
#> 5297        2026          Week 6 Year to date  Local authority    E92000001
#> 5298        2026          Week 6 Year to date  Local authority    E92000001
#> 5299        2026          Week 6 Year to date  Local authority    E92000001
#> 5300        2026          Week 6 Year to date  Local authority    E92000001
#> 5301        2026          Week 6 Year to date  Local authority    E92000001
#> 5302        2026          Week 6 Year to date  Local authority    E92000001
#> 5303        2026          Week 6 Year to date  Local authority    E92000001
#> 5304        2026          Week 6 Year to date  Local authority    E92000001
#> 5305        2026          Week 6 Year to date  Local authority    E92000001
#> 5306        2026          Week 6 Year to date  Local authority    E92000001
#> 5307        2026          Week 6 Year to date  Local authority    E92000001
#> 5308        2026          Week 6 Year to date  Local authority    E92000001
#> 5309        2026          Week 6 Year to date  Local authority    E92000001
#> 5310        2026          Week 6 Year to date  Local authority    E92000001
#> 5311        2026          Week 6 Year to date  Local authority    E92000001
#> 5312        2026          Week 6 Year to date  Local authority    E92000001
#> 5313        2026          Week 6 Year to date  Local authority    E92000001
#> 5314        2026          Week 6 Year to date  Local authority    E92000001
#> 5315        2026          Week 6 Year to date  Local authority    E92000001
#> 5316        2026          Week 6 Year to date  Local authority    E92000001
#> 5317        2026          Week 6 Year to date  Local authority    E92000001
#> 5318        2026          Week 6 Year to date  Local authority    E92000001
#> 5319        2026          Week 6 Year to date  Local authority    E92000001
#> 5320        2026          Week 6 Year to date  Local authority    E92000001
#> 5321        2026          Week 6 Year to date  Local authority    E92000001
#> 5322        2026          Week 6 Year to date  Local authority    E92000001
#> 5323        2026          Week 6 Year to date  Local authority    E92000001
#> 5324        2026          Week 6 Year to date  Local authority    E92000001
#> 5325        2026          Week 6 Year to date  Local authority    E92000001
#> 5326        2026          Week 6 Year to date  Local authority    E92000001
#> 5327        2026          Week 6 Year to date  Local authority    E92000001
#> 5328        2026          Week 6 Year to date  Local authority    E92000001
#> 5329        2026          Week 6 Year to date  Local authority    E92000001
#> 5330        2026          Week 6 Year to date  Local authority    E92000001
#> 5331        2026          Week 6 Year to date  Local authority    E92000001
#> 5332        2026          Week 6 Year to date  Local authority    E92000001
#> 5333        2026          Week 6 Year to date         Regional    E92000001
#> 5334        2026          Week 6 Year to date         Regional    E92000001
#> 5335        2026          Week 6 Year to date         Regional    E92000001
#> 5336        2026          Week 6 Year to date         Regional    E92000001
#> 5337        2026          Week 6 Year to date  Local authority    E92000001
#> 5338        2026          Week 6 Year to date  Local authority    E92000001
#> 5339        2026          Week 6 Year to date  Local authority    E92000001
#> 5340        2026          Week 6 Year to date  Local authority    E92000001
#> 5341        2026          Week 6 Year to date  Local authority    E92000001
#> 5342        2026          Week 6 Year to date  Local authority    E92000001
#> 5343        2026          Week 6 Year to date  Local authority    E92000001
#> 5344        2026          Week 6 Year to date  Local authority    E92000001
#> 5345        2026          Week 6 Year to date  Local authority    E92000001
#> 5346        2026          Week 6 Year to date  Local authority    E92000001
#> 5347        2026          Week 6 Year to date  Local authority    E92000001
#> 5348        2026          Week 6 Year to date  Local authority    E92000001
#> 5349        2026          Week 6 Year to date  Local authority    E92000001
#> 5350        2026          Week 6 Year to date  Local authority    E92000001
#> 5351        2026          Week 6 Year to date  Local authority    E92000001
#> 5352        2026          Week 6 Year to date  Local authority    E92000001
#> 5353        2026          Week 6 Year to date  Local authority    E92000001
#> 5354        2026          Week 6 Year to date  Local authority    E92000001
#> 5355        2026          Week 6 Year to date  Local authority    E92000001
#> 5356        2026          Week 6 Year to date  Local authority    E92000001
#> 5357        2026          Week 6 Year to date  Local authority    E92000001
#> 5358        2026          Week 6 Year to date  Local authority    E92000001
#> 5359        2026          Week 6 Year to date  Local authority    E92000001
#> 5360        2026          Week 6 Year to date  Local authority    E92000001
#> 5361        2026          Week 6 Year to date  Local authority    E92000001
#> 5362        2026          Week 6 Year to date  Local authority    E92000001
#> 5363        2026          Week 6 Year to date  Local authority    E92000001
#> 5364        2026          Week 6 Year to date  Local authority    E92000001
#> 5365        2026          Week 6 Year to date  Local authority    E92000001
#> 5366        2026          Week 6 Year to date  Local authority    E92000001
#> 5367        2026          Week 6 Year to date  Local authority    E92000001
#> 5368        2026          Week 6 Year to date  Local authority    E92000001
#> 5369        2026          Week 6 Year to date  Local authority    E92000001
#> 5370        2026          Week 6 Year to date  Local authority    E92000001
#> 5371        2026          Week 6 Year to date  Local authority    E92000001
#> 5372        2026          Week 6 Year to date  Local authority    E92000001
#> 5373        2026          Week 6 Year to date  Local authority    E92000001
#> 5374        2026          Week 6 Year to date  Local authority    E92000001
#> 5375        2026          Week 6 Year to date  Local authority    E92000001
#> 5376        2026          Week 6 Year to date  Local authority    E92000001
#> 5377        2026          Week 6 Year to date  Local authority    E92000001
#> 5378        2026          Week 6 Year to date  Local authority    E92000001
#> 5379        2026          Week 6 Year to date  Local authority    E92000001
#> 5380        2026          Week 6 Year to date  Local authority    E92000001
#> 5381        2026          Week 6 Year to date  Local authority    E92000001
#> 5382        2026          Week 6 Year to date  Local authority    E92000001
#> 5383        2026          Week 6 Year to date  Local authority    E92000001
#> 5384        2026          Week 6 Year to date  Local authority    E92000001
#> 5385        2026          Week 6 Year to date  Local authority    E92000001
#> 5386        2026          Week 6 Year to date  Local authority    E92000001
#> 5387        2026          Week 6 Year to date  Local authority    E92000001
#> 5388        2026          Week 6 Year to date  Local authority    E92000001
#> 5389        2026          Week 6 Year to date  Local authority    E92000001
#> 5390        2026          Week 6 Year to date  Local authority    E92000001
#> 5391        2026          Week 6 Year to date  Local authority    E92000001
#> 5392        2026          Week 6 Year to date  Local authority    E92000001
#> 5393        2026          Week 6 Year to date  Local authority    E92000001
#> 5394        2026          Week 6 Year to date  Local authority    E92000001
#> 5395        2026          Week 6 Year to date  Local authority    E92000001
#> 5396        2026          Week 6 Year to date  Local authority    E92000001
#> 5397        2026          Week 6 Year to date         Regional    E92000001
#> 5398        2026          Week 6 Year to date         Regional    E92000001
#> 5399        2026          Week 6 Year to date         Regional    E92000001
#> 5400        2026          Week 6 Year to date         Regional    E92000001
#> 5401        2026          Week 6 Year to date  Local authority    E92000001
#> 5402        2026          Week 6 Year to date  Local authority    E92000001
#> 5403        2026          Week 6 Year to date  Local authority    E92000001
#> 5404        2026          Week 6 Year to date  Local authority    E92000001
#> 5405        2026          Week 6 Year to date  Local authority    E92000001
#> 5406        2026          Week 6 Year to date  Local authority    E92000001
#> 5407        2026          Week 6 Year to date  Local authority    E92000001
#> 5408        2026          Week 6 Year to date  Local authority    E92000001
#> 5409        2026          Week 6 Year to date  Local authority    E92000001
#> 5410        2026          Week 6 Year to date  Local authority    E92000001
#> 5411        2026          Week 6 Year to date  Local authority    E92000001
#> 5412        2026          Week 6 Year to date  Local authority    E92000001
#> 5413        2026          Week 6 Year to date  Local authority    E92000001
#> 5414        2026          Week 6 Year to date  Local authority    E92000001
#> 5415        2026          Week 6 Year to date  Local authority    E92000001
#> 5416        2026          Week 6 Year to date  Local authority    E92000001
#> 5417        2026          Week 6 Year to date  Local authority    E92000001
#> 5418        2026          Week 6 Year to date  Local authority    E92000001
#> 5419        2026          Week 6 Year to date  Local authority    E92000001
#> 5420        2026          Week 6 Year to date  Local authority    E92000001
#> 5421        2026          Week 6 Year to date  Local authority    E92000001
#> 5422        2026          Week 6 Year to date  Local authority    E92000001
#> 5423        2026          Week 6 Year to date  Local authority    E92000001
#> 5424        2026          Week 6 Year to date  Local authority    E92000001
#> 5425        2026          Week 6 Year to date  Local authority    E92000001
#> 5426        2026          Week 6 Year to date  Local authority    E92000001
#> 5427        2026          Week 6 Year to date  Local authority    E92000001
#> 5428        2026          Week 6 Year to date  Local authority    E92000001
#> 5429        2026          Week 6 Year to date  Local authority    E92000001
#> 5430        2026          Week 6 Year to date  Local authority    E92000001
#> 5431        2026          Week 6 Year to date  Local authority    E92000001
#> 5432        2026          Week 6 Year to date  Local authority    E92000001
#> 5433        2026          Week 6 Year to date  Local authority    E92000001
#> 5434        2026          Week 6 Year to date  Local authority    E92000001
#> 5435        2026          Week 6 Year to date  Local authority    E92000001
#> 5436        2026          Week 6 Year to date  Local authority    E92000001
#> 5437        2026          Week 6 Year to date  Local authority    E92000001
#> 5438        2026          Week 6 Year to date  Local authority    E92000001
#> 5439        2026          Week 6 Year to date  Local authority    E92000001
#> 5440        2026          Week 6 Year to date         Regional    E92000001
#> 5441        2026          Week 6 Year to date         Regional    E92000001
#> 5442        2026          Week 6 Year to date         Regional    E92000001
#> 5443        2026          Week 6 Year to date         Regional    E92000001
#> 5444        2026          Week 6 Year to date  Local authority    E92000001
#> 5445        2026          Week 6 Year to date  Local authority    E92000001
#> 5446        2026          Week 6 Year to date  Local authority    E92000001
#> 5447        2026          Week 6 Year to date  Local authority    E92000001
#> 5448        2026          Week 6 Year to date  Local authority    E92000001
#> 5449        2026          Week 6 Year to date  Local authority    E92000001
#> 5450        2026          Week 6 Year to date  Local authority    E92000001
#> 5451        2026          Week 6 Year to date  Local authority    E92000001
#> 5452        2026          Week 6 Year to date  Local authority    E92000001
#> 5453        2026          Week 6 Year to date  Local authority    E92000001
#> 5454        2026          Week 6 Year to date  Local authority    E92000001
#> 5455        2026          Week 6 Year to date  Local authority    E92000001
#> 5456        2026          Week 6 Year to date  Local authority    E92000001
#> 5457        2026          Week 6 Year to date  Local authority    E92000001
#> 5458        2026          Week 6 Year to date  Local authority    E92000001
#> 5459        2026          Week 6 Year to date  Local authority    E92000001
#> 5460        2026          Week 6 Year to date  Local authority    E92000001
#> 5461        2026          Week 6 Year to date  Local authority    E92000001
#> 5462        2026          Week 6 Year to date  Local authority    E92000001
#> 5463        2026          Week 6 Year to date  Local authority    E92000001
#> 5464        2026          Week 6 Year to date  Local authority    E92000001
#> 5465        2026          Week 6 Year to date  Local authority    E92000001
#> 5466        2026          Week 6 Year to date  Local authority    E92000001
#> 5467        2026          Week 6 Year to date  Local authority    E92000001
#> 5468        2026          Week 6 Year to date  Local authority    E92000001
#> 5469        2026          Week 6 Year to date  Local authority    E92000001
#> 5470        2026          Week 6 Year to date  Local authority    E92000001
#> 5471        2026          Week 6 Year to date  Local authority    E92000001
#> 5472        2026          Week 6 Year to date  Local authority    E92000001
#> 5473        2026          Week 6 Year to date  Local authority    E92000001
#> 5474        2026          Week 6 Year to date  Local authority    E92000001
#> 5475        2026          Week 6 Year to date  Local authority    E92000001
#> 5476        2026          Week 6 Year to date  Local authority    E92000001
#> 5477        2026          Week 6 Year to date  Local authority    E92000001
#> 5478        2026          Week 6 Year to date  Local authority    E92000001
#> 5479        2026          Week 6 Year to date  Local authority    E92000001
#> 5480        2026          Week 6 Year to date  Local authority    E92000001
#> 5481        2026          Week 6 Year to date  Local authority    E92000001
#> 5482        2026          Week 6 Year to date  Local authority    E92000001
#> 5483        2026          Week 6 Year to date  Local authority    E92000001
#> 5484        2026          Week 6 Year to date  Local authority    E92000001
#> 5485        2026          Week 6 Year to date  Local authority    E92000001
#> 5486        2026          Week 6 Year to date  Local authority    E92000001
#> 5487        2026          Week 6 Year to date  Local authority    E92000001
#> 5488        2026          Week 6 Year to date  Local authority    E92000001
#> 5489        2026          Week 6 Year to date  Local authority    E92000001
#> 5490        2026          Week 6 Year to date  Local authority    E92000001
#> 5491        2026          Week 6 Year to date  Local authority    E92000001
#> 5492        2026          Week 6 Year to date  Local authority    E92000001
#> 5493        2026          Week 6 Year to date  Local authority    E92000001
#> 5494        2026          Week 6 Year to date  Local authority    E92000001
#> 5495        2026          Week 6 Year to date  Local authority    E92000001
#> 5496        2026          Week 6 Year to date  Local authority    E92000001
#> 5497        2026          Week 6 Year to date  Local authority    E92000001
#> 5498        2026          Week 6 Year to date  Local authority    E92000001
#> 5499        2026          Week 6 Year to date  Local authority    E92000001
#> 5500        2026          Week 6 Year to date         Regional    E92000001
#> 5501        2026          Week 6 Year to date         Regional    E92000001
#> 5502        2026          Week 6 Year to date         Regional    E92000001
#> 5503        2026          Week 6 Year to date         Regional    E92000001
#> 5504        2026          Week 6 Year to date  Local authority    E92000001
#> 5505        2026          Week 6 Year to date  Local authority    E92000001
#> 5506        2026          Week 6 Year to date  Local authority    E92000001
#> 5507        2026          Week 6 Year to date  Local authority    E92000001
#> 5508        2026          Week 6 Year to date  Local authority    E92000001
#> 5509        2026          Week 6 Year to date  Local authority    E92000001
#> 5510        2026          Week 6 Year to date  Local authority    E92000001
#> 5511        2026          Week 6 Year to date  Local authority    E92000001
#> 5512        2026          Week 6 Year to date  Local authority    E92000001
#> 5513        2026          Week 6 Year to date  Local authority    E92000001
#> 5514        2026          Week 6 Year to date  Local authority    E92000001
#> 5515        2026          Week 6 Year to date  Local authority    E92000001
#> 5516        2026          Week 6 Year to date  Local authority    E92000001
#> 5517        2026          Week 6 Year to date  Local authority    E92000001
#> 5518        2026          Week 6 Year to date  Local authority    E92000001
#> 5519        2026          Week 6 Year to date  Local authority    E92000001
#> 5520        2026          Week 6 Year to date  Local authority    E92000001
#> 5521        2026          Week 6 Year to date  Local authority    E92000001
#> 5522        2026          Week 6 Year to date  Local authority    E92000001
#> 5523        2026          Week 6 Year to date  Local authority    E92000001
#> 5524        2026          Week 6 Year to date  Local authority    E92000001
#> 5525        2026          Week 6 Year to date  Local authority    E92000001
#> 5526        2026          Week 6 Year to date  Local authority    E92000001
#> 5527        2026          Week 6 Year to date  Local authority    E92000001
#> 5528        2026          Week 6 Year to date  Local authority    E92000001
#> 5529        2026          Week 6 Year to date  Local authority    E92000001
#> 5530        2026          Week 6 Year to date  Local authority    E92000001
#> 5531        2026          Week 6 Year to date  Local authority    E92000001
#> 5532        2026          Week 6 Year to date  Local authority    E92000001
#> 5533        2026          Week 6 Year to date  Local authority    E92000001
#> 5534        2026          Week 6 Year to date  Local authority    E92000001
#> 5535        2026          Week 6 Year to date  Local authority    E92000001
#> 5536        2026          Week 6 Year to date  Local authority    E92000001
#> 5537        2026          Week 6 Year to date  Local authority    E92000001
#> 5538        2026          Week 6 Year to date  Local authority    E92000001
#> 5539        2026          Week 6 Year to date  Local authority    E92000001
#> 5540        2026          Week 6 Year to date  Local authority    E92000001
#> 5541        2026          Week 6 Year to date  Local authority    E92000001
#> 5542        2026          Week 6 Year to date  Local authority    E92000001
#> 5543        2026          Week 6 Year to date  Local authority    E92000001
#> 5544        2026          Week 6 Year to date  Local authority    E92000001
#> 5545        2026          Week 6 Year to date  Local authority    E92000001
#> 5546        2026          Week 6 Year to date  Local authority    E92000001
#> 5547        2026          Week 6 Year to date  Local authority    E92000001
#> 5548        2026          Week 6 Year to date         Regional    E92000001
#> 5549        2026          Week 6 Year to date         Regional    E92000001
#> 5550        2026          Week 6 Year to date         Regional    E92000001
#> 5551        2026          Week 6 Year to date         Regional    E92000001
#> 5552        2026          Week 6 Year to date  Local authority    E92000001
#> 5553        2026          Week 6 Year to date  Local authority    E92000001
#> 5554        2026          Week 6 Year to date  Local authority    E92000001
#> 5555        2026          Week 6 Year to date  Local authority    E92000001
#> 5556        2026          Week 6 Year to date  Local authority    E92000001
#> 5557        2026          Week 6 Year to date  Local authority    E92000001
#> 5558        2026          Week 6 Year to date  Local authority    E92000001
#> 5559        2026          Week 6 Year to date  Local authority    E92000001
#> 5560        2026          Week 6 Year to date  Local authority    E92000001
#> 5561        2026          Week 6 Year to date  Local authority    E92000001
#> 5562        2026          Week 6 Year to date  Local authority    E92000001
#> 5563        2026          Week 6 Year to date  Local authority    E92000001
#> 5564        2026          Week 6 Year to date  Local authority    E92000001
#> 5565        2026          Week 6 Year to date  Local authority    E92000001
#> 5566        2026          Week 6 Year to date  Local authority    E92000001
#> 5567        2026          Week 6 Year to date  Local authority    E92000001
#> 5568        2026          Week 6 Year to date  Local authority    E92000001
#> 5569        2026          Week 6 Year to date  Local authority    E92000001
#> 5570        2026          Week 6 Year to date  Local authority    E92000001
#> 5571        2026          Week 6 Year to date  Local authority    E92000001
#> 5572        2026          Week 6 Year to date  Local authority    E92000001
#> 5573        2026          Week 6 Year to date  Local authority    E92000001
#> 5574        2026          Week 6 Year to date  Local authority    E92000001
#> 5575        2026          Week 6 Year to date  Local authority    E92000001
#> 5576        2026          Week 6 Year to date  Local authority    E92000001
#> 5577        2026          Week 6 Year to date  Local authority    E92000001
#> 5578        2026          Week 6 Year to date  Local authority    E92000001
#> 5579        2026          Week 6 Year to date  Local authority    E92000001
#> 5580        2026          Week 6 Year to date  Local authority    E92000001
#> 5581        2026          Week 6 Year to date  Local authority    E92000001
#> 5582        2026          Week 6 Year to date  Local authority    E92000001
#> 5583        2026          Week 6 Year to date  Local authority    E92000001
#> 5584        2026          Week 6 Year to date  Local authority    E92000001
#> 5585        2026          Week 6 Year to date  Local authority    E92000001
#> 5586        2026          Week 6 Year to date  Local authority    E92000001
#> 5587        2026          Week 6 Year to date  Local authority    E92000001
#> 5588        2026          Week 6 Year to date  Local authority    E92000001
#> 5589        2026          Week 6 Year to date  Local authority    E92000001
#> 5590        2026          Week 6 Year to date  Local authority    E92000001
#> 5591        2026          Week 6 Year to date  Local authority    E92000001
#> 5592        2026          Week 6 Year to date  Local authority    E92000001
#> 5593        2026          Week 6 Year to date  Local authority    E92000001
#> 5594        2026          Week 6 Year to date  Local authority    E92000001
#> 5595        2026          Week 6 Year to date  Local authority    E92000001
#> 5596        2026          Week 6 Year to date  Local authority    E92000001
#> 5597        2026          Week 6 Year to date  Local authority    E92000001
#> 5598        2026          Week 6 Year to date  Local authority    E92000001
#> 5599        2026          Week 6 Year to date  Local authority    E92000001
#> 5600        2026          Week 6 Year to date  Local authority    E92000001
#> 5601        2026          Week 6 Year to date  Local authority    E92000001
#> 5602        2026          Week 6 Year to date  Local authority    E92000001
#> 5603        2026          Week 6 Year to date  Local authority    E92000001
#> 5604        2026          Week 6 Year to date  Local authority    E92000001
#> 5605        2026          Week 6 Year to date  Local authority    E92000001
#> 5606        2026          Week 6 Year to date  Local authority    E92000001
#> 5607        2026          Week 6 Year to date  Local authority    E92000001
#> 5608        2026          Week 6 Year to date  Local authority    E92000001
#> 5609        2026          Week 6 Year to date  Local authority    E92000001
#> 5610        2026          Week 6 Year to date  Local authority    E92000001
#> 5611        2026          Week 6 Year to date  Local authority    E92000001
#> 5612        2026          Week 6 Year to date  Local authority    E92000001
#> 5613        2026          Week 6 Year to date  Local authority    E92000001
#> 5614        2026          Week 6 Year to date  Local authority    E92000001
#> 5615        2026          Week 6 Year to date  Local authority    E92000001
#> 5616        2026          Week 6 Year to date  Local authority    E92000001
#> 5617        2026          Week 6 Year to date  Local authority    E92000001
#> 5618        2026          Week 6 Year to date  Local authority    E92000001
#> 5619        2026          Week 6 Year to date  Local authority    E92000001
#> 5620        2026          Week 6 Year to date  Local authority    E92000001
#> 5621        2026          Week 6 Year to date  Local authority    E92000001
#> 5622        2026          Week 6 Year to date  Local authority    E92000001
#> 5623        2026          Week 6 Year to date  Local authority    E92000001
#> 5624        2026          Week 6 Year to date  Local authority    E92000001
#> 5625        2026          Week 6 Year to date  Local authority    E92000001
#> 5626        2026          Week 6 Year to date  Local authority    E92000001
#> 5627        2026          Week 6 Year to date  Local authority    E92000001
#> 5628        2026          Week 6 Year to date  Local authority    E92000001
#> 5629        2026          Week 6 Year to date  Local authority    E92000001
#> 5630        2026          Week 6 Year to date  Local authority    E92000001
#> 5631        2026          Week 6 Year to date  Local authority    E92000001
#> 5632        2026          Week 6 Year to date  Local authority    E92000001
#> 5633        2026          Week 6 Year to date  Local authority    E92000001
#> 5634        2026          Week 6 Year to date  Local authority    E92000001
#> 5635        2026          Week 6 Year to date  Local authority    E92000001
#> 5636        2026          Week 6 Year to date  Local authority    E92000001
#> 5637        2026          Week 6 Year to date  Local authority    E92000001
#> 5638        2026          Week 6 Year to date  Local authority    E92000001
#> 5639        2026          Week 6 Year to date  Local authority    E92000001
#> 5640        2026          Week 6 Year to date  Local authority    E92000001
#> 5641        2026          Week 6 Year to date  Local authority    E92000001
#> 5642        2026          Week 6 Year to date  Local authority    E92000001
#> 5643        2026          Week 6 Year to date  Local authority    E92000001
#> 5644        2026          Week 6 Year to date  Local authority    E92000001
#> 5645        2026          Week 6 Year to date  Local authority    E92000001
#> 5646        2026          Week 6 Year to date  Local authority    E92000001
#> 5647        2026          Week 6 Year to date  Local authority    E92000001
#> 5648        2026          Week 6 Year to date  Local authority    E92000001
#> 5649        2026          Week 6 Year to date  Local authority    E92000001
#> 5650        2026          Week 6 Year to date  Local authority    E92000001
#> 5651        2026          Week 6 Year to date  Local authority    E92000001
#> 5652        2026          Week 6 Year to date  Local authority    E92000001
#> 5653        2026          Week 6 Year to date  Local authority    E92000001
#> 5654        2026          Week 6 Year to date  Local authority    E92000001
#> 5655        2026          Week 6 Year to date  Local authority    E92000001
#> 5656        2026          Week 6 Year to date  Local authority    E92000001
#> 5657        2026          Week 6 Year to date  Local authority    E92000001
#> 5658        2026          Week 6 Year to date  Local authority    E92000001
#> 5659        2026          Week 6 Year to date  Local authority    E92000001
#> 5660        2026          Week 6 Year to date  Local authority    E92000001
#> 5661        2026          Week 6 Year to date  Local authority    E92000001
#> 5662        2026          Week 6 Year to date  Local authority    E92000001
#> 5663        2026          Week 6 Year to date  Local authority    E92000001
#> 5664        2026          Week 6 Year to date  Local authority    E92000001
#> 5665        2026          Week 6 Year to date  Local authority    E92000001
#> 5666        2026          Week 6 Year to date  Local authority    E92000001
#> 5667        2026          Week 6 Year to date  Local authority    E92000001
#> 5668        2026          Week 6 Year to date  Local authority    E92000001
#> 5669        2026          Week 6 Year to date  Local authority    E92000001
#> 5670        2026          Week 6 Year to date  Local authority    E92000001
#> 5671        2026          Week 6 Year to date  Local authority    E92000001
#> 5672        2026          Week 6 Year to date  Local authority    E92000001
#> 5673        2026          Week 6 Year to date  Local authority    E92000001
#> 5674        2026          Week 6 Year to date  Local authority    E92000001
#> 5675        2026          Week 6 Year to date  Local authority    E92000001
#> 5676        2026          Week 6 Year to date  Local authority    E92000001
#> 5677        2026          Week 6 Year to date  Local authority    E92000001
#> 5678        2026          Week 6 Year to date  Local authority    E92000001
#> 5679        2026          Week 6 Year to date  Local authority    E92000001
#> 5680        2026          Week 6 Year to date  Local authority    E92000001
#> 5681        2026          Week 6 Year to date  Local authority    E92000001
#> 5682        2026          Week 6 Year to date         Regional    E92000001
#> 5683        2026          Week 6 Year to date         Regional    E92000001
#> 5684        2026          Week 6 Year to date         Regional    E92000001
#> 5685        2026          Week 6 Year to date         Regional    E92000001
#> 5686        2026          Week 6 Year to date  Local authority    E92000001
#> 5687        2026          Week 6 Year to date  Local authority    E92000001
#> 5688        2026          Week 6 Year to date  Local authority    E92000001
#> 5689        2026          Week 6 Year to date  Local authority    E92000001
#> 5690        2026          Week 6 Year to date  Local authority    E92000001
#> 5691        2026          Week 6 Year to date  Local authority    E92000001
#> 5692        2026          Week 6 Year to date  Local authority    E92000001
#> 5693        2026          Week 6 Year to date  Local authority    E92000001
#> 5694        2026          Week 6 Year to date  Local authority    E92000001
#> 5695        2026          Week 6 Year to date  Local authority    E92000001
#> 5696        2026          Week 6 Year to date  Local authority    E92000001
#> 5697        2026          Week 6 Year to date  Local authority    E92000001
#> 5698        2026          Week 6 Year to date  Local authority    E92000001
#> 5699        2026          Week 6 Year to date  Local authority    E92000001
#> 5700        2026          Week 6 Year to date  Local authority    E92000001
#> 5701        2026          Week 6 Year to date  Local authority    E92000001
#> 5702        2026          Week 6 Year to date  Local authority    E92000001
#> 5703        2026          Week 6 Year to date  Local authority    E92000001
#> 5704        2026          Week 6 Year to date  Local authority    E92000001
#> 5705        2026          Week 6 Year to date  Local authority    E92000001
#> 5706        2026          Week 6 Year to date  Local authority    E92000001
#> 5707        2026          Week 6 Year to date  Local authority    E92000001
#> 5708        2026          Week 6 Year to date  Local authority    E92000001
#> 5709        2026          Week 6 Year to date  Local authority    E92000001
#> 5710        2026          Week 6 Year to date  Local authority    E92000001
#> 5711        2026          Week 6 Year to date  Local authority    E92000001
#> 5712        2026          Week 6 Year to date  Local authority    E92000001
#> 5713        2026          Week 6 Year to date  Local authority    E92000001
#> 5714        2026          Week 6 Year to date  Local authority    E92000001
#> 5715        2026          Week 6 Year to date  Local authority    E92000001
#> 5716        2026          Week 6 Year to date  Local authority    E92000001
#> 5717        2026          Week 6 Year to date  Local authority    E92000001
#> 5718        2026          Week 6 Year to date  Local authority    E92000001
#> 5719        2026          Week 6 Year to date  Local authority    E92000001
#> 5720        2026          Week 6 Year to date  Local authority    E92000001
#> 5721        2026          Week 6 Year to date  Local authority    E92000001
#> 5722        2026          Week 6 Year to date  Local authority    E92000001
#> 5723        2026          Week 6 Year to date  Local authority    E92000001
#> 5724        2026          Week 6 Year to date  Local authority    E92000001
#> 5725        2026          Week 6 Year to date  Local authority    E92000001
#> 5726        2026          Week 6 Year to date  Local authority    E92000001
#> 5727        2026          Week 6 Year to date  Local authority    E92000001
#> 5728        2026          Week 6 Year to date  Local authority    E92000001
#> 5729        2026          Week 6 Year to date  Local authority    E92000001
#> 5730        2026          Week 6 Year to date  Local authority    E92000001
#> 5731        2026          Week 6 Year to date  Local authority    E92000001
#> 5732        2026          Week 6 Year to date  Local authority    E92000001
#> 5733        2026          Week 6 Year to date  Local authority    E92000001
#> 5734        2026          Week 6 Year to date  Local authority    E92000001
#> 5735        2026          Week 6 Year to date  Local authority    E92000001
#> 5736        2026          Week 6 Year to date  Local authority    E92000001
#> 5737        2026          Week 6 Year to date  Local authority    E92000001
#> 5738        2026          Week 6 Year to date  Local authority    E92000001
#> 5739        2026          Week 6 Year to date  Local authority    E92000001
#> 5740        2026          Week 6 Year to date  Local authority    E92000001
#> 5741        2026          Week 6 Year to date  Local authority    E92000001
#> 5742        2026          Week 6 Year to date  Local authority    E92000001
#> 5743        2026          Week 6 Year to date  Local authority    E92000001
#> 5744        2026          Week 6 Year to date  Local authority    E92000001
#> 5745        2026          Week 6 Year to date  Local authority    E92000001
#> 5746        2026          Week 6 Year to date  Local authority    E92000001
#> 5747        2026          Week 6 Year to date  Local authority    E92000001
#> 5748        2026          Week 6 Year to date  Local authority    E92000001
#> 5749        2026          Week 6 Year to date  Local authority    E92000001
#> 5750        2026          Week 6 Year to date  Local authority    E92000001
#> 5751        2026          Week 6 Year to date  Local authority    E92000001
#> 5752        2026          Week 6 Year to date  Local authority    E92000001
#> 5753        2026          Week 6 Year to date  Local authority    E92000001
#> 5754        2026          Week 6 Year to date  Local authority    E92000001
#> 5755        2026          Week 6 Year to date  Local authority    E92000001
#> 5756        2026          Week 6 Year to date  Local authority    E92000001
#> 5757        2026          Week 6 Year to date  Local authority    E92000001
#> 5758        2026          Week 6 Year to date  Local authority    E92000001
#> 5759        2026          Week 6 Year to date  Local authority    E92000001
#> 5760        2026          Week 6 Year to date  Local authority    E92000001
#> 5761        2026          Week 6 Year to date  Local authority    E92000001
#> 5762        2026          Week 6 Year to date         Regional    E92000001
#> 5763        2026          Week 6 Year to date         Regional    E92000001
#> 5764        2026          Week 6 Year to date         Regional    E92000001
#> 5765        2026          Week 6 Year to date         Regional    E92000001
#> 5766        2026          Week 6 Year to date  Local authority    E92000001
#> 5767        2026          Week 6 Year to date  Local authority    E92000001
#> 5768        2026          Week 6 Year to date  Local authority    E92000001
#> 5769        2026          Week 6 Year to date  Local authority    E92000001
#> 5770        2026          Week 6 Year to date  Local authority    E92000001
#> 5771        2026          Week 6 Year to date  Local authority    E92000001
#> 5772        2026          Week 6 Year to date  Local authority    E92000001
#> 5773        2026          Week 6 Year to date  Local authority    E92000001
#> 5774        2026          Week 6 Year to date  Local authority    E92000001
#> 5775        2026          Week 6 Year to date  Local authority    E92000001
#> 5776        2026          Week 6 Year to date  Local authority    E92000001
#> 5777        2026          Week 6 Year to date  Local authority    E92000001
#> 5778        2026          Week 6 Year to date  Local authority    E92000001
#> 5779        2026          Week 6 Year to date  Local authority    E92000001
#> 5780        2026          Week 6 Year to date  Local authority    E92000001
#> 5781        2026          Week 6 Year to date  Local authority    E92000001
#> 5782        2026          Week 6 Year to date  Local authority    E92000001
#> 5783        2026          Week 6 Year to date  Local authority    E92000001
#> 5784        2026          Week 6 Year to date  Local authority    E92000001
#> 5785        2026          Week 6 Year to date  Local authority    E92000001
#> 5786        2026          Week 6 Year to date  Local authority    E92000001
#> 5787        2026          Week 6 Year to date  Local authority    E92000001
#> 5788        2026          Week 6 Year to date  Local authority    E92000001
#> 5789        2026          Week 6 Year to date  Local authority    E92000001
#> 5790        2026          Week 6 Year to date  Local authority    E92000001
#> 5791        2026          Week 6 Year to date  Local authority    E92000001
#> 5792        2026          Week 6 Year to date  Local authority    E92000001
#> 5793        2026          Week 6 Year to date  Local authority    E92000001
#> 5794        2026          Week 6 Year to date  Local authority    E92000001
#> 5795        2026          Week 6 Year to date  Local authority    E92000001
#> 5796        2026          Week 6 Year to date  Local authority    E92000001
#> 5797        2026          Week 6 Year to date  Local authority    E92000001
#> 5798        2026          Week 6 Year to date  Local authority    E92000001
#> 5799        2026          Week 6 Year to date  Local authority    E92000001
#> 5800        2026          Week 6 Year to date  Local authority    E92000001
#> 5801        2026          Week 6 Year to date  Local authority    E92000001
#> 5802        2026          Week 6 Year to date  Local authority    E92000001
#> 5803        2026          Week 6 Year to date  Local authority    E92000001
#> 5804        2026          Week 6 Year to date  Local authority    E92000001
#> 5805        2026          Week 6 Year to date  Local authority    E92000001
#> 5806        2026          Week 6 Year to date  Local authority    E92000001
#> 5807        2026          Week 6 Year to date  Local authority    E92000001
#> 5808        2026          Week 6 Year to date  Local authority    E92000001
#> 5809        2026          Week 6 Year to date  Local authority    E92000001
#> 5810        2026          Week 6 Year to date  Local authority    E92000001
#> 5811        2026          Week 6 Year to date  Local authority    E92000001
#> 5812        2026          Week 6 Year to date  Local authority    E92000001
#> 5813        2026          Week 6 Year to date  Local authority    E92000001
#> 5814        2026          Week 6 Year to date  Local authority    E92000001
#> 5815        2026          Week 6 Year to date  Local authority    E92000001
#> 5816        2026          Week 6 Year to date  Local authority    E92000001
#> 5817        2026          Week 6 Year to date  Local authority    E92000001
#> 5818        2026          Week 6 Year to date  Local authority    E92000001
#> 5819        2026          Week 6 Year to date  Local authority    E92000001
#> 5820        2026          Week 6 Year to date  Local authority    E92000001
#> 5821        2026          Week 6 Year to date  Local authority    E92000001
#> 5822        2026          Week 6 Year to date  Local authority    E92000001
#> 5823        2026          Week 6 Year to date  Local authority    E92000001
#> 5824        2026          Week 4 Year to date         National    E92000001
#> 5825        2026          Week 4 Year to date         National    E92000001
#> 5826        2026          Week 4 Year to date         National    E92000001
#> 5827        2026          Week 4 Year to date         National    E92000001
#> 5828        2026          Week 4 Year to date         Regional    E92000001
#> 5829        2026          Week 4 Year to date         Regional    E92000001
#> 5830        2026          Week 4 Year to date         Regional    E92000001
#> 5831        2026          Week 4 Year to date         Regional    E92000001
#> 5832        2026          Week 4 Year to date  Local authority    E92000001
#> 5833        2026          Week 4 Year to date  Local authority    E92000001
#> 5834        2026          Week 4 Year to date  Local authority    E92000001
#> 5835        2026          Week 4 Year to date  Local authority    E92000001
#> 5836        2026          Week 4 Year to date  Local authority    E92000001
#> 5837        2026          Week 4 Year to date  Local authority    E92000001
#> 5838        2026          Week 4 Year to date  Local authority    E92000001
#> 5839        2026          Week 4 Year to date  Local authority    E92000001
#> 5840        2026          Week 4 Year to date  Local authority    E92000001
#> 5841        2026          Week 4 Year to date  Local authority    E92000001
#> 5842        2026          Week 4 Year to date  Local authority    E92000001
#> 5843        2026          Week 4 Year to date  Local authority    E92000001
#> 5844        2026          Week 4 Year to date  Local authority    E92000001
#> 5845        2026          Week 4 Year to date  Local authority    E92000001
#> 5846        2026          Week 4 Year to date  Local authority    E92000001
#> 5847        2026          Week 4 Year to date  Local authority    E92000001
#> 5848        2026          Week 4 Year to date  Local authority    E92000001
#> 5849        2026          Week 4 Year to date  Local authority    E92000001
#> 5850        2026          Week 4 Year to date  Local authority    E92000001
#> 5851        2026          Week 4 Year to date  Local authority    E92000001
#> 5852        2026          Week 4 Year to date  Local authority    E92000001
#> 5853        2026          Week 4 Year to date  Local authority    E92000001
#> 5854        2026          Week 4 Year to date  Local authority    E92000001
#> 5855        2026          Week 4 Year to date  Local authority    E92000001
#> 5856        2026          Week 4 Year to date  Local authority    E92000001
#> 5857        2026          Week 4 Year to date  Local authority    E92000001
#> 5858        2026          Week 4 Year to date  Local authority    E92000001
#> 5859        2026          Week 4 Year to date  Local authority    E92000001
#> 5860        2026          Week 4 Year to date  Local authority    E92000001
#> 5861        2026          Week 4 Year to date  Local authority    E92000001
#> 5862        2026          Week 4 Year to date  Local authority    E92000001
#> 5863        2026          Week 4 Year to date  Local authority    E92000001
#> 5864        2026          Week 4 Year to date  Local authority    E92000001
#> 5865        2026          Week 4 Year to date  Local authority    E92000001
#> 5866        2026          Week 4 Year to date  Local authority    E92000001
#> 5867        2026          Week 4 Year to date  Local authority    E92000001
#> 5868        2026          Week 4 Year to date  Local authority    E92000001
#> 5869        2026          Week 4 Year to date  Local authority    E92000001
#> 5870        2026          Week 4 Year to date  Local authority    E92000001
#> 5871        2026          Week 4 Year to date  Local authority    E92000001
#> 5872        2026          Week 4 Year to date  Local authority    E92000001
#> 5873        2026          Week 4 Year to date  Local authority    E92000001
#> 5874        2026          Week 4 Year to date  Local authority    E92000001
#> 5875        2026          Week 4 Year to date  Local authority    E92000001
#> 5876        2026          Week 4 Year to date  Local authority    E92000001
#> 5877        2026          Week 4 Year to date  Local authority    E92000001
#> 5878        2026          Week 4 Year to date  Local authority    E92000001
#> 5879        2026          Week 4 Year to date  Local authority    E92000001
#> 5880        2026          Week 4 Year to date         Regional    E92000001
#> 5881        2026          Week 4 Year to date         Regional    E92000001
#> 5882        2026          Week 4 Year to date         Regional    E92000001
#> 5883        2026          Week 4 Year to date         Regional    E92000001
#> 5884        2026          Week 4 Year to date  Local authority    E92000001
#> 5885        2026          Week 4 Year to date  Local authority    E92000001
#> 5886        2026          Week 4 Year to date  Local authority    E92000001
#> 5887        2026          Week 4 Year to date  Local authority    E92000001
#> 5888        2026          Week 4 Year to date  Local authority    E92000001
#> 5889        2026          Week 4 Year to date  Local authority    E92000001
#> 5890        2026          Week 4 Year to date  Local authority    E92000001
#> 5891        2026          Week 4 Year to date  Local authority    E92000001
#> 5892        2026          Week 4 Year to date  Local authority    E92000001
#> 5893        2026          Week 4 Year to date  Local authority    E92000001
#> 5894        2026          Week 4 Year to date  Local authority    E92000001
#> 5895        2026          Week 4 Year to date  Local authority    E92000001
#> 5896        2026          Week 4 Year to date  Local authority    E92000001
#> 5897        2026          Week 4 Year to date  Local authority    E92000001
#> 5898        2026          Week 4 Year to date  Local authority    E92000001
#> 5899        2026          Week 4 Year to date  Local authority    E92000001
#> 5900        2026          Week 4 Year to date  Local authority    E92000001
#> 5901        2026          Week 4 Year to date  Local authority    E92000001
#> 5902        2026          Week 4 Year to date  Local authority    E92000001
#> 5903        2026          Week 4 Year to date  Local authority    E92000001
#> 5904        2026          Week 4 Year to date  Local authority    E92000001
#> 5905        2026          Week 4 Year to date  Local authority    E92000001
#> 5906        2026          Week 4 Year to date  Local authority    E92000001
#> 5907        2026          Week 4 Year to date  Local authority    E92000001
#> 5908        2026          Week 4 Year to date  Local authority    E92000001
#> 5909        2026          Week 4 Year to date  Local authority    E92000001
#> 5910        2026          Week 4 Year to date  Local authority    E92000001
#> 5911        2026          Week 4 Year to date  Local authority    E92000001
#> 5912        2026          Week 4 Year to date  Local authority    E92000001
#> 5913        2026          Week 4 Year to date  Local authority    E92000001
#> 5914        2026          Week 4 Year to date  Local authority    E92000001
#> 5915        2026          Week 4 Year to date  Local authority    E92000001
#> 5916        2026          Week 4 Year to date  Local authority    E92000001
#> 5917        2026          Week 4 Year to date  Local authority    E92000001
#> 5918        2026          Week 4 Year to date  Local authority    E92000001
#> 5919        2026          Week 4 Year to date  Local authority    E92000001
#> 5920        2026          Week 4 Year to date  Local authority    E92000001
#> 5921        2026          Week 4 Year to date  Local authority    E92000001
#> 5922        2026          Week 4 Year to date  Local authority    E92000001
#> 5923        2026          Week 4 Year to date  Local authority    E92000001
#> 5924        2026          Week 4 Year to date  Local authority    E92000001
#> 5925        2026          Week 4 Year to date  Local authority    E92000001
#> 5926        2026          Week 4 Year to date  Local authority    E92000001
#> 5927        2026          Week 4 Year to date  Local authority    E92000001
#> 5928        2026          Week 4 Year to date  Local authority    E92000001
#> 5929        2026          Week 4 Year to date  Local authority    E92000001
#> 5930        2026          Week 4 Year to date  Local authority    E92000001
#> 5931        2026          Week 4 Year to date  Local authority    E92000001
#> 5932        2026          Week 4 Year to date  Local authority    E92000001
#> 5933        2026          Week 4 Year to date  Local authority    E92000001
#> 5934        2026          Week 4 Year to date  Local authority    E92000001
#> 5935        2026          Week 4 Year to date  Local authority    E92000001
#> 5936        2026          Week 4 Year to date  Local authority    E92000001
#> 5937        2026          Week 4 Year to date  Local authority    E92000001
#> 5938        2026          Week 4 Year to date  Local authority    E92000001
#> 5939        2026          Week 4 Year to date  Local authority    E92000001
#> 5940        2026          Week 4 Year to date  Local authority    E92000001
#> 5941        2026          Week 4 Year to date  Local authority    E92000001
#> 5942        2026          Week 4 Year to date  Local authority    E92000001
#> 5943        2026          Week 4 Year to date  Local authority    E92000001
#> 5944        2026          Week 4 Year to date  Local authority    E92000001
#> 5945        2026          Week 4 Year to date  Local authority    E92000001
#> 5946        2026          Week 4 Year to date  Local authority    E92000001
#> 5947        2026          Week 4 Year to date  Local authority    E92000001
#> 5948        2026          Week 4 Year to date  Local authority    E92000001
#> 5949        2026          Week 4 Year to date  Local authority    E92000001
#> 5950        2026          Week 4 Year to date  Local authority    E92000001
#> 5951        2026          Week 4 Year to date  Local authority    E92000001
#> 5952        2026          Week 4 Year to date  Local authority    E92000001
#> 5953        2026          Week 4 Year to date  Local authority    E92000001
#> 5954        2026          Week 4 Year to date  Local authority    E92000001
#> 5955        2026          Week 4 Year to date  Local authority    E92000001
#> 5956        2026          Week 4 Year to date  Local authority    E92000001
#> 5957        2026          Week 4 Year to date  Local authority    E92000001
#> 5958        2026          Week 4 Year to date  Local authority    E92000001
#> 5959        2026          Week 4 Year to date  Local authority    E92000001
#> 5960        2026          Week 4 Year to date  Local authority    E92000001
#> 5961        2026          Week 4 Year to date  Local authority    E92000001
#> 5962        2026          Week 4 Year to date  Local authority    E92000001
#> 5963        2026          Week 4 Year to date  Local authority    E92000001
#> 5964        2026          Week 4 Year to date  Local authority    E92000001
#> 5965        2026          Week 4 Year to date  Local authority    E92000001
#> 5966        2026          Week 4 Year to date  Local authority    E92000001
#> 5967        2026          Week 4 Year to date  Local authority    E92000001
#> 5968        2026          Week 4 Year to date  Local authority    E92000001
#> 5969        2026          Week 4 Year to date  Local authority    E92000001
#> 5970        2026          Week 4 Year to date  Local authority    E92000001
#> 5971        2026          Week 4 Year to date  Local authority    E92000001
#> 5972        2026          Week 4 Year to date  Local authority    E92000001
#> 5973        2026          Week 4 Year to date  Local authority    E92000001
#> 5974        2026          Week 4 Year to date  Local authority    E92000001
#> 5975        2026          Week 4 Year to date  Local authority    E92000001
#> 5976        2026          Week 4 Year to date  Local authority    E92000001
#> 5977        2026          Week 4 Year to date  Local authority    E92000001
#> 5978        2026          Week 4 Year to date  Local authority    E92000001
#> 5979        2026          Week 4 Year to date  Local authority    E92000001
#> 5980        2026          Week 4 Year to date         Regional    E92000001
#> 5981        2026          Week 4 Year to date         Regional    E92000001
#> 5982        2026          Week 4 Year to date         Regional    E92000001
#> 5983        2026          Week 4 Year to date         Regional    E92000001
#> 5984        2026          Week 4 Year to date  Local authority    E92000001
#> 5985        2026          Week 4 Year to date  Local authority    E92000001
#> 5986        2026          Week 4 Year to date  Local authority    E92000001
#> 5987        2026          Week 4 Year to date  Local authority    E92000001
#> 5988        2026          Week 4 Year to date  Local authority    E92000001
#> 5989        2026          Week 4 Year to date  Local authority    E92000001
#> 5990        2026          Week 4 Year to date  Local authority    E92000001
#> 5991        2026          Week 4 Year to date  Local authority    E92000001
#> 5992        2026          Week 4 Year to date  Local authority    E92000001
#> 5993        2026          Week 4 Year to date  Local authority    E92000001
#> 5994        2026          Week 4 Year to date  Local authority    E92000001
#> 5995        2026          Week 4 Year to date  Local authority    E92000001
#> 5996        2026          Week 4 Year to date  Local authority    E92000001
#> 5997        2026          Week 4 Year to date  Local authority    E92000001
#> 5998        2026          Week 4 Year to date  Local authority    E92000001
#> 5999        2026          Week 4 Year to date  Local authority    E92000001
#> 6000        2026          Week 4 Year to date  Local authority    E92000001
#> 6001        2026          Week 4 Year to date  Local authority    E92000001
#> 6002        2026          Week 4 Year to date  Local authority    E92000001
#> 6003        2026          Week 4 Year to date  Local authority    E92000001
#> 6004        2026          Week 4 Year to date  Local authority    E92000001
#> 6005        2026          Week 4 Year to date  Local authority    E92000001
#> 6006        2026          Week 4 Year to date  Local authority    E92000001
#> 6007        2026          Week 4 Year to date  Local authority    E92000001
#> 6008        2026          Week 4 Year to date  Local authority    E92000001
#> 6009        2026          Week 4 Year to date  Local authority    E92000001
#> 6010        2026          Week 4 Year to date  Local authority    E92000001
#> 6011        2026          Week 4 Year to date  Local authority    E92000001
#> 6012        2026          Week 4 Year to date  Local authority    E92000001
#> 6013        2026          Week 4 Year to date  Local authority    E92000001
#> 6014        2026          Week 4 Year to date  Local authority    E92000001
#> 6015        2026          Week 4 Year to date  Local authority    E92000001
#> 6016        2026          Week 4 Year to date  Local authority    E92000001
#> 6017        2026          Week 4 Year to date  Local authority    E92000001
#> 6018        2026          Week 4 Year to date  Local authority    E92000001
#> 6019        2026          Week 4 Year to date  Local authority    E92000001
#> 6020        2026          Week 4 Year to date  Local authority    E92000001
#> 6021        2026          Week 4 Year to date  Local authority    E92000001
#> 6022        2026          Week 4 Year to date  Local authority    E92000001
#> 6023        2026          Week 4 Year to date  Local authority    E92000001
#> 6024        2026          Week 4 Year to date  Local authority    E92000001
#> 6025        2026          Week 4 Year to date  Local authority    E92000001
#> 6026        2026          Week 4 Year to date  Local authority    E92000001
#> 6027        2026          Week 4 Year to date  Local authority    E92000001
#> 6028        2026          Week 4 Year to date  Local authority    E92000001
#> 6029        2026          Week 4 Year to date  Local authority    E92000001
#> 6030        2026          Week 4 Year to date  Local authority    E92000001
#> 6031        2026          Week 4 Year to date  Local authority    E92000001
#> 6032        2026          Week 4 Year to date  Local authority    E92000001
#> 6033        2026          Week 4 Year to date  Local authority    E92000001
#> 6034        2026          Week 4 Year to date  Local authority    E92000001
#> 6035        2026          Week 4 Year to date  Local authority    E92000001
#> 6036        2026          Week 4 Year to date  Local authority    E92000001
#> 6037        2026          Week 4 Year to date  Local authority    E92000001
#> 6038        2026          Week 4 Year to date  Local authority    E92000001
#> 6039        2026          Week 4 Year to date  Local authority    E92000001
#> 6040        2026          Week 4 Year to date  Local authority    E92000001
#> 6041        2026          Week 4 Year to date  Local authority    E92000001
#> 6042        2026          Week 4 Year to date  Local authority    E92000001
#> 6043        2026          Week 4 Year to date  Local authority    E92000001
#> 6044        2026          Week 4 Year to date         Regional    E92000001
#> 6045        2026          Week 4 Year to date         Regional    E92000001
#> 6046        2026          Week 4 Year to date         Regional    E92000001
#> 6047        2026          Week 4 Year to date         Regional    E92000001
#> 6048        2026          Week 4 Year to date  Local authority    E92000001
#> 6049        2026          Week 4 Year to date  Local authority    E92000001
#> 6050        2026          Week 4 Year to date  Local authority    E92000001
#> 6051        2026          Week 4 Year to date  Local authority    E92000001
#> 6052        2026          Week 4 Year to date  Local authority    E92000001
#> 6053        2026          Week 4 Year to date  Local authority    E92000001
#> 6054        2026          Week 4 Year to date  Local authority    E92000001
#> 6055        2026          Week 4 Year to date  Local authority    E92000001
#> 6056        2026          Week 4 Year to date  Local authority    E92000001
#> 6057        2026          Week 4 Year to date  Local authority    E92000001
#> 6058        2026          Week 4 Year to date  Local authority    E92000001
#> 6059        2026          Week 4 Year to date  Local authority    E92000001
#> 6060        2026          Week 4 Year to date  Local authority    E92000001
#> 6061        2026          Week 4 Year to date  Local authority    E92000001
#> 6062        2026          Week 4 Year to date  Local authority    E92000001
#> 6063        2026          Week 4 Year to date  Local authority    E92000001
#> 6064        2026          Week 4 Year to date  Local authority    E92000001
#> 6065        2026          Week 4 Year to date  Local authority    E92000001
#> 6066        2026          Week 4 Year to date  Local authority    E92000001
#> 6067        2026          Week 4 Year to date  Local authority    E92000001
#> 6068        2026          Week 4 Year to date  Local authority    E92000001
#> 6069        2026          Week 4 Year to date  Local authority    E92000001
#> 6070        2026          Week 4 Year to date  Local authority    E92000001
#> 6071        2026          Week 4 Year to date  Local authority    E92000001
#> 6072        2026          Week 4 Year to date  Local authority    E92000001
#> 6073        2026          Week 4 Year to date  Local authority    E92000001
#> 6074        2026          Week 4 Year to date  Local authority    E92000001
#> 6075        2026          Week 4 Year to date  Local authority    E92000001
#> 6076        2026          Week 4 Year to date  Local authority    E92000001
#> 6077        2026          Week 4 Year to date  Local authority    E92000001
#> 6078        2026          Week 4 Year to date  Local authority    E92000001
#> 6079        2026          Week 4 Year to date  Local authority    E92000001
#> 6080        2026          Week 4 Year to date  Local authority    E92000001
#> 6081        2026          Week 4 Year to date  Local authority    E92000001
#> 6082        2026          Week 4 Year to date  Local authority    E92000001
#> 6083        2026          Week 4 Year to date  Local authority    E92000001
#> 6084        2026          Week 4 Year to date  Local authority    E92000001
#> 6085        2026          Week 4 Year to date  Local authority    E92000001
#> 6086        2026          Week 4 Year to date  Local authority    E92000001
#> 6087        2026          Week 4 Year to date         Regional    E92000001
#> 6088        2026          Week 4 Year to date         Regional    E92000001
#> 6089        2026          Week 4 Year to date         Regional    E92000001
#> 6090        2026          Week 4 Year to date         Regional    E92000001
#> 6091        2026          Week 4 Year to date  Local authority    E92000001
#> 6092        2026          Week 4 Year to date  Local authority    E92000001
#> 6093        2026          Week 4 Year to date  Local authority    E92000001
#> 6094        2026          Week 4 Year to date  Local authority    E92000001
#> 6095        2026          Week 4 Year to date  Local authority    E92000001
#> 6096        2026          Week 4 Year to date  Local authority    E92000001
#> 6097        2026          Week 4 Year to date  Local authority    E92000001
#> 6098        2026          Week 4 Year to date  Local authority    E92000001
#> 6099        2026          Week 4 Year to date  Local authority    E92000001
#> 6100        2026          Week 4 Year to date  Local authority    E92000001
#> 6101        2026          Week 4 Year to date  Local authority    E92000001
#> 6102        2026          Week 4 Year to date  Local authority    E92000001
#> 6103        2026          Week 4 Year to date  Local authority    E92000001
#> 6104        2026          Week 4 Year to date  Local authority    E92000001
#> 6105        2026          Week 4 Year to date  Local authority    E92000001
#> 6106        2026          Week 4 Year to date  Local authority    E92000001
#> 6107        2026          Week 4 Year to date  Local authority    E92000001
#> 6108        2026          Week 4 Year to date  Local authority    E92000001
#> 6109        2026          Week 4 Year to date  Local authority    E92000001
#> 6110        2026          Week 4 Year to date  Local authority    E92000001
#> 6111        2026          Week 4 Year to date  Local authority    E92000001
#> 6112        2026          Week 4 Year to date  Local authority    E92000001
#> 6113        2026          Week 4 Year to date  Local authority    E92000001
#> 6114        2026          Week 4 Year to date  Local authority    E92000001
#> 6115        2026          Week 4 Year to date  Local authority    E92000001
#> 6116        2026          Week 4 Year to date  Local authority    E92000001
#> 6117        2026          Week 4 Year to date  Local authority    E92000001
#> 6118        2026          Week 4 Year to date  Local authority    E92000001
#> 6119        2026          Week 4 Year to date  Local authority    E92000001
#> 6120        2026          Week 4 Year to date  Local authority    E92000001
#> 6121        2026          Week 4 Year to date  Local authority    E92000001
#> 6122        2026          Week 4 Year to date  Local authority    E92000001
#> 6123        2026          Week 4 Year to date  Local authority    E92000001
#> 6124        2026          Week 4 Year to date  Local authority    E92000001
#> 6125        2026          Week 4 Year to date  Local authority    E92000001
#> 6126        2026          Week 4 Year to date  Local authority    E92000001
#> 6127        2026          Week 4 Year to date  Local authority    E92000001
#> 6128        2026          Week 4 Year to date  Local authority    E92000001
#> 6129        2026          Week 4 Year to date  Local authority    E92000001
#> 6130        2026          Week 4 Year to date  Local authority    E92000001
#> 6131        2026          Week 4 Year to date  Local authority    E92000001
#> 6132        2026          Week 4 Year to date  Local authority    E92000001
#> 6133        2026          Week 4 Year to date  Local authority    E92000001
#> 6134        2026          Week 4 Year to date  Local authority    E92000001
#> 6135        2026          Week 4 Year to date  Local authority    E92000001
#> 6136        2026          Week 4 Year to date  Local authority    E92000001
#> 6137        2026          Week 4 Year to date  Local authority    E92000001
#> 6138        2026          Week 4 Year to date  Local authority    E92000001
#> 6139        2026          Week 4 Year to date  Local authority    E92000001
#> 6140        2026          Week 4 Year to date  Local authority    E92000001
#> 6141        2026          Week 4 Year to date  Local authority    E92000001
#> 6142        2026          Week 4 Year to date  Local authority    E92000001
#> 6143        2026          Week 4 Year to date  Local authority    E92000001
#> 6144        2026          Week 4 Year to date  Local authority    E92000001
#> 6145        2026          Week 4 Year to date  Local authority    E92000001
#> 6146        2026          Week 4 Year to date  Local authority    E92000001
#> 6147        2026          Week 4 Year to date         Regional    E92000001
#> 6148        2026          Week 4 Year to date         Regional    E92000001
#> 6149        2026          Week 4 Year to date         Regional    E92000001
#> 6150        2026          Week 4 Year to date         Regional    E92000001
#> 6151        2026          Week 4 Year to date  Local authority    E92000001
#> 6152        2026          Week 4 Year to date  Local authority    E92000001
#> 6153        2026          Week 4 Year to date  Local authority    E92000001
#> 6154        2026          Week 4 Year to date  Local authority    E92000001
#> 6155        2026          Week 4 Year to date  Local authority    E92000001
#> 6156        2026          Week 4 Year to date  Local authority    E92000001
#> 6157        2026          Week 4 Year to date  Local authority    E92000001
#> 6158        2026          Week 4 Year to date  Local authority    E92000001
#> 6159        2026          Week 4 Year to date  Local authority    E92000001
#> 6160        2026          Week 4 Year to date  Local authority    E92000001
#> 6161        2026          Week 4 Year to date  Local authority    E92000001
#> 6162        2026          Week 4 Year to date  Local authority    E92000001
#> 6163        2026          Week 4 Year to date  Local authority    E92000001
#> 6164        2026          Week 4 Year to date  Local authority    E92000001
#> 6165        2026          Week 4 Year to date  Local authority    E92000001
#> 6166        2026          Week 4 Year to date  Local authority    E92000001
#> 6167        2026          Week 4 Year to date  Local authority    E92000001
#> 6168        2026          Week 4 Year to date  Local authority    E92000001
#> 6169        2026          Week 4 Year to date  Local authority    E92000001
#> 6170        2026          Week 4 Year to date  Local authority    E92000001
#> 6171        2026          Week 4 Year to date  Local authority    E92000001
#> 6172        2026          Week 4 Year to date  Local authority    E92000001
#> 6173        2026          Week 4 Year to date  Local authority    E92000001
#> 6174        2026          Week 4 Year to date  Local authority    E92000001
#> 6175        2026          Week 4 Year to date  Local authority    E92000001
#> 6176        2026          Week 4 Year to date  Local authority    E92000001
#> 6177        2026          Week 4 Year to date  Local authority    E92000001
#> 6178        2026          Week 4 Year to date  Local authority    E92000001
#> 6179        2026          Week 4 Year to date  Local authority    E92000001
#> 6180        2026          Week 4 Year to date  Local authority    E92000001
#> 6181        2026          Week 4 Year to date  Local authority    E92000001
#> 6182        2026          Week 4 Year to date  Local authority    E92000001
#> 6183        2026          Week 4 Year to date  Local authority    E92000001
#> 6184        2026          Week 4 Year to date  Local authority    E92000001
#> 6185        2026          Week 4 Year to date  Local authority    E92000001
#> 6186        2026          Week 4 Year to date  Local authority    E92000001
#> 6187        2026          Week 4 Year to date  Local authority    E92000001
#> 6188        2026          Week 4 Year to date  Local authority    E92000001
#> 6189        2026          Week 4 Year to date  Local authority    E92000001
#> 6190        2026          Week 4 Year to date  Local authority    E92000001
#> 6191        2026          Week 4 Year to date  Local authority    E92000001
#> 6192        2026          Week 4 Year to date  Local authority    E92000001
#> 6193        2026          Week 4 Year to date  Local authority    E92000001
#> 6194        2026          Week 4 Year to date  Local authority    E92000001
#> 6195        2026          Week 4 Year to date         Regional    E92000001
#> 6196        2026          Week 4 Year to date         Regional    E92000001
#> 6197        2026          Week 4 Year to date         Regional    E92000001
#> 6198        2026          Week 4 Year to date         Regional    E92000001
#> 6199        2026          Week 4 Year to date  Local authority    E92000001
#> 6200        2026          Week 4 Year to date  Local authority    E92000001
#> 6201        2026          Week 4 Year to date  Local authority    E92000001
#> 6202        2026          Week 4 Year to date  Local authority    E92000001
#> 6203        2026          Week 4 Year to date  Local authority    E92000001
#> 6204        2026          Week 4 Year to date  Local authority    E92000001
#> 6205        2026          Week 4 Year to date  Local authority    E92000001
#> 6206        2026          Week 4 Year to date  Local authority    E92000001
#> 6207        2026          Week 4 Year to date  Local authority    E92000001
#> 6208        2026          Week 4 Year to date  Local authority    E92000001
#> 6209        2026          Week 4 Year to date  Local authority    E92000001
#> 6210        2026          Week 4 Year to date  Local authority    E92000001
#> 6211        2026          Week 4 Year to date  Local authority    E92000001
#> 6212        2026          Week 4 Year to date  Local authority    E92000001
#> 6213        2026          Week 4 Year to date  Local authority    E92000001
#> 6214        2026          Week 4 Year to date  Local authority    E92000001
#> 6215        2026          Week 4 Year to date  Local authority    E92000001
#> 6216        2026          Week 4 Year to date  Local authority    E92000001
#> 6217        2026          Week 4 Year to date  Local authority    E92000001
#> 6218        2026          Week 4 Year to date  Local authority    E92000001
#> 6219        2026          Week 4 Year to date  Local authority    E92000001
#> 6220        2026          Week 4 Year to date  Local authority    E92000001
#> 6221        2026          Week 4 Year to date  Local authority    E92000001
#> 6222        2026          Week 4 Year to date  Local authority    E92000001
#> 6223        2026          Week 4 Year to date  Local authority    E92000001
#> 6224        2026          Week 4 Year to date  Local authority    E92000001
#> 6225        2026          Week 4 Year to date  Local authority    E92000001
#> 6226        2026          Week 4 Year to date  Local authority    E92000001
#> 6227        2026          Week 4 Year to date  Local authority    E92000001
#> 6228        2026          Week 4 Year to date  Local authority    E92000001
#> 6229        2026          Week 4 Year to date  Local authority    E92000001
#> 6230        2026          Week 4 Year to date  Local authority    E92000001
#> 6231        2026          Week 4 Year to date  Local authority    E92000001
#> 6232        2026          Week 4 Year to date  Local authority    E92000001
#> 6233        2026          Week 4 Year to date  Local authority    E92000001
#> 6234        2026          Week 4 Year to date  Local authority    E92000001
#> 6235        2026          Week 4 Year to date  Local authority    E92000001
#> 6236        2026          Week 4 Year to date  Local authority    E92000001
#> 6237        2026          Week 4 Year to date  Local authority    E92000001
#> 6238        2026          Week 4 Year to date  Local authority    E92000001
#> 6239        2026          Week 4 Year to date  Local authority    E92000001
#> 6240        2026          Week 4 Year to date  Local authority    E92000001
#> 6241        2026          Week 4 Year to date  Local authority    E92000001
#> 6242        2026          Week 4 Year to date  Local authority    E92000001
#> 6243        2026          Week 4 Year to date  Local authority    E92000001
#> 6244        2026          Week 4 Year to date  Local authority    E92000001
#> 6245        2026          Week 4 Year to date  Local authority    E92000001
#> 6246        2026          Week 4 Year to date  Local authority    E92000001
#> 6247        2026          Week 4 Year to date  Local authority    E92000001
#> 6248        2026          Week 4 Year to date  Local authority    E92000001
#> 6249        2026          Week 4 Year to date  Local authority    E92000001
#> 6250        2026          Week 4 Year to date  Local authority    E92000001
#> 6251        2026          Week 4 Year to date  Local authority    E92000001
#> 6252        2026          Week 4 Year to date  Local authority    E92000001
#> 6253        2026          Week 4 Year to date  Local authority    E92000001
#> 6254        2026          Week 4 Year to date  Local authority    E92000001
#> 6255        2026          Week 4 Year to date  Local authority    E92000001
#> 6256        2026          Week 4 Year to date  Local authority    E92000001
#> 6257        2026          Week 4 Year to date  Local authority    E92000001
#> 6258        2026          Week 4 Year to date  Local authority    E92000001
#> 6259        2026          Week 4 Year to date  Local authority    E92000001
#> 6260        2026          Week 4 Year to date  Local authority    E92000001
#> 6261        2026          Week 4 Year to date  Local authority    E92000001
#> 6262        2026          Week 4 Year to date  Local authority    E92000001
#> 6263        2026          Week 4 Year to date  Local authority    E92000001
#> 6264        2026          Week 4 Year to date  Local authority    E92000001
#> 6265        2026          Week 4 Year to date  Local authority    E92000001
#> 6266        2026          Week 4 Year to date  Local authority    E92000001
#> 6267        2026          Week 4 Year to date  Local authority    E92000001
#> 6268        2026          Week 4 Year to date  Local authority    E92000001
#> 6269        2026          Week 4 Year to date  Local authority    E92000001
#> 6270        2026          Week 4 Year to date  Local authority    E92000001
#> 6271        2026          Week 4 Year to date  Local authority    E92000001
#> 6272        2026          Week 4 Year to date  Local authority    E92000001
#> 6273        2026          Week 4 Year to date  Local authority    E92000001
#> 6274        2026          Week 4 Year to date  Local authority    E92000001
#> 6275        2026          Week 4 Year to date  Local authority    E92000001
#> 6276        2026          Week 4 Year to date  Local authority    E92000001
#> 6277        2026          Week 4 Year to date  Local authority    E92000001
#> 6278        2026          Week 4 Year to date  Local authority    E92000001
#> 6279        2026          Week 4 Year to date  Local authority    E92000001
#> 6280        2026          Week 4 Year to date  Local authority    E92000001
#> 6281        2026          Week 4 Year to date  Local authority    E92000001
#> 6282        2026          Week 4 Year to date  Local authority    E92000001
#> 6283        2026          Week 4 Year to date  Local authority    E92000001
#> 6284        2026          Week 4 Year to date  Local authority    E92000001
#> 6285        2026          Week 4 Year to date  Local authority    E92000001
#> 6286        2026          Week 4 Year to date  Local authority    E92000001
#> 6287        2026          Week 4 Year to date  Local authority    E92000001
#> 6288        2026          Week 4 Year to date  Local authority    E92000001
#> 6289        2026          Week 4 Year to date  Local authority    E92000001
#> 6290        2026          Week 4 Year to date  Local authority    E92000001
#> 6291        2026          Week 4 Year to date  Local authority    E92000001
#> 6292        2026          Week 4 Year to date  Local authority    E92000001
#> 6293        2026          Week 4 Year to date  Local authority    E92000001
#> 6294        2026          Week 4 Year to date  Local authority    E92000001
#> 6295        2026          Week 4 Year to date  Local authority    E92000001
#> 6296        2026          Week 4 Year to date  Local authority    E92000001
#> 6297        2026          Week 4 Year to date  Local authority    E92000001
#> 6298        2026          Week 4 Year to date  Local authority    E92000001
#> 6299        2026          Week 4 Year to date  Local authority    E92000001
#> 6300        2026          Week 4 Year to date  Local authority    E92000001
#> 6301        2026          Week 4 Year to date  Local authority    E92000001
#> 6302        2026          Week 4 Year to date  Local authority    E92000001
#> 6303        2026          Week 4 Year to date  Local authority    E92000001
#> 6304        2026          Week 4 Year to date  Local authority    E92000001
#> 6305        2026          Week 4 Year to date  Local authority    E92000001
#> 6306        2026          Week 4 Year to date  Local authority    E92000001
#> 6307        2026          Week 4 Year to date  Local authority    E92000001
#> 6308        2026          Week 4 Year to date  Local authority    E92000001
#> 6309        2026          Week 4 Year to date  Local authority    E92000001
#> 6310        2026          Week 4 Year to date  Local authority    E92000001
#> 6311        2026          Week 4 Year to date  Local authority    E92000001
#> 6312        2026          Week 4 Year to date  Local authority    E92000001
#> 6313        2026          Week 4 Year to date  Local authority    E92000001
#> 6314        2026          Week 4 Year to date  Local authority    E92000001
#> 6315        2026          Week 4 Year to date  Local authority    E92000001
#> 6316        2026          Week 4 Year to date  Local authority    E92000001
#> 6317        2026          Week 4 Year to date  Local authority    E92000001
#> 6318        2026          Week 4 Year to date  Local authority    E92000001
#> 6319        2026          Week 4 Year to date  Local authority    E92000001
#> 6320        2026          Week 4 Year to date  Local authority    E92000001
#> 6321        2026          Week 4 Year to date  Local authority    E92000001
#> 6322        2026          Week 4 Year to date  Local authority    E92000001
#> 6323        2026          Week 4 Year to date  Local authority    E92000001
#> 6324        2026          Week 4 Year to date  Local authority    E92000001
#> 6325        2026          Week 4 Year to date  Local authority    E92000001
#> 6326        2026          Week 4 Year to date  Local authority    E92000001
#> 6327        2026          Week 4 Year to date  Local authority    E92000001
#> 6328        2026          Week 4 Year to date  Local authority    E92000001
#> 6329        2026          Week 4 Year to date         Regional    E92000001
#> 6330        2026          Week 4 Year to date         Regional    E92000001
#> 6331        2026          Week 4 Year to date         Regional    E92000001
#> 6332        2026          Week 4 Year to date         Regional    E92000001
#> 6333        2026          Week 4 Year to date  Local authority    E92000001
#> 6334        2026          Week 4 Year to date  Local authority    E92000001
#> 6335        2026          Week 4 Year to date  Local authority    E92000001
#> 6336        2026          Week 4 Year to date  Local authority    E92000001
#> 6337        2026          Week 4 Year to date  Local authority    E92000001
#> 6338        2026          Week 4 Year to date  Local authority    E92000001
#> 6339        2026          Week 4 Year to date  Local authority    E92000001
#> 6340        2026          Week 4 Year to date  Local authority    E92000001
#> 6341        2026          Week 4 Year to date  Local authority    E92000001
#> 6342        2026          Week 4 Year to date  Local authority    E92000001
#> 6343        2026          Week 4 Year to date  Local authority    E92000001
#> 6344        2026          Week 4 Year to date  Local authority    E92000001
#> 6345        2026          Week 4 Year to date  Local authority    E92000001
#> 6346        2026          Week 4 Year to date  Local authority    E92000001
#> 6347        2026          Week 4 Year to date  Local authority    E92000001
#> 6348        2026          Week 4 Year to date  Local authority    E92000001
#> 6349        2026          Week 4 Year to date  Local authority    E92000001
#> 6350        2026          Week 4 Year to date  Local authority    E92000001
#> 6351        2026          Week 4 Year to date  Local authority    E92000001
#> 6352        2026          Week 4 Year to date  Local authority    E92000001
#> 6353        2026          Week 4 Year to date  Local authority    E92000001
#> 6354        2026          Week 4 Year to date  Local authority    E92000001
#> 6355        2026          Week 4 Year to date  Local authority    E92000001
#> 6356        2026          Week 4 Year to date  Local authority    E92000001
#> 6357        2026          Week 4 Year to date  Local authority    E92000001
#> 6358        2026          Week 4 Year to date  Local authority    E92000001
#> 6359        2026          Week 4 Year to date  Local authority    E92000001
#> 6360        2026          Week 4 Year to date  Local authority    E92000001
#> 6361        2026          Week 4 Year to date  Local authority    E92000001
#> 6362        2026          Week 4 Year to date  Local authority    E92000001
#> 6363        2026          Week 4 Year to date  Local authority    E92000001
#> 6364        2026          Week 4 Year to date  Local authority    E92000001
#> 6365        2026          Week 4 Year to date  Local authority    E92000001
#> 6366        2026          Week 4 Year to date  Local authority    E92000001
#> 6367        2026          Week 4 Year to date  Local authority    E92000001
#> 6368        2026          Week 4 Year to date  Local authority    E92000001
#> 6369        2026          Week 4 Year to date  Local authority    E92000001
#> 6370        2026          Week 4 Year to date  Local authority    E92000001
#> 6371        2026          Week 4 Year to date  Local authority    E92000001
#> 6372        2026          Week 4 Year to date  Local authority    E92000001
#> 6373        2026          Week 4 Year to date  Local authority    E92000001
#> 6374        2026          Week 4 Year to date  Local authority    E92000001
#> 6375        2026          Week 4 Year to date  Local authority    E92000001
#> 6376        2026          Week 4 Year to date  Local authority    E92000001
#> 6377        2026          Week 4 Year to date  Local authority    E92000001
#> 6378        2026          Week 4 Year to date  Local authority    E92000001
#> 6379        2026          Week 4 Year to date  Local authority    E92000001
#> 6380        2026          Week 4 Year to date  Local authority    E92000001
#> 6381        2026          Week 4 Year to date  Local authority    E92000001
#> 6382        2026          Week 4 Year to date  Local authority    E92000001
#> 6383        2026          Week 4 Year to date  Local authority    E92000001
#> 6384        2026          Week 4 Year to date  Local authority    E92000001
#> 6385        2026          Week 4 Year to date  Local authority    E92000001
#> 6386        2026          Week 4 Year to date  Local authority    E92000001
#> 6387        2026          Week 4 Year to date  Local authority    E92000001
#> 6388        2026          Week 4 Year to date  Local authority    E92000001
#> 6389        2026          Week 4 Year to date  Local authority    E92000001
#> 6390        2026          Week 4 Year to date  Local authority    E92000001
#> 6391        2026          Week 4 Year to date  Local authority    E92000001
#> 6392        2026          Week 4 Year to date  Local authority    E92000001
#> 6393        2026          Week 4 Year to date  Local authority    E92000001
#> 6394        2026          Week 4 Year to date  Local authority    E92000001
#> 6395        2026          Week 4 Year to date  Local authority    E92000001
#> 6396        2026          Week 4 Year to date  Local authority    E92000001
#> 6397        2026          Week 4 Year to date  Local authority    E92000001
#> 6398        2026          Week 4 Year to date  Local authority    E92000001
#> 6399        2026          Week 4 Year to date  Local authority    E92000001
#> 6400        2026          Week 4 Year to date  Local authority    E92000001
#> 6401        2026          Week 4 Year to date  Local authority    E92000001
#> 6402        2026          Week 4 Year to date  Local authority    E92000001
#> 6403        2026          Week 4 Year to date  Local authority    E92000001
#> 6404        2026          Week 4 Year to date  Local authority    E92000001
#> 6405        2026          Week 4 Year to date  Local authority    E92000001
#> 6406        2026          Week 4 Year to date  Local authority    E92000001
#> 6407        2026          Week 4 Year to date  Local authority    E92000001
#> 6408        2026          Week 4 Year to date  Local authority    E92000001
#> 6409        2026          Week 4 Year to date         Regional    E92000001
#> 6410        2026          Week 4 Year to date         Regional    E92000001
#> 6411        2026          Week 4 Year to date         Regional    E92000001
#> 6412        2026          Week 4 Year to date         Regional    E92000001
#> 6413        2026          Week 4 Year to date  Local authority    E92000001
#> 6414        2026          Week 4 Year to date  Local authority    E92000001
#> 6415        2026          Week 4 Year to date  Local authority    E92000001
#> 6416        2026          Week 4 Year to date  Local authority    E92000001
#> 6417        2026          Week 4 Year to date  Local authority    E92000001
#> 6418        2026          Week 4 Year to date  Local authority    E92000001
#> 6419        2026          Week 4 Year to date  Local authority    E92000001
#> 6420        2026          Week 4 Year to date  Local authority    E92000001
#> 6421        2026          Week 4 Year to date  Local authority    E92000001
#> 6422        2026          Week 4 Year to date  Local authority    E92000001
#> 6423        2026          Week 4 Year to date  Local authority    E92000001
#> 6424        2026          Week 4 Year to date  Local authority    E92000001
#> 6425        2026          Week 4 Year to date  Local authority    E92000001
#> 6426        2026          Week 4 Year to date  Local authority    E92000001
#> 6427        2026          Week 4 Year to date  Local authority    E92000001
#> 6428        2026          Week 4 Year to date  Local authority    E92000001
#> 6429        2026          Week 4 Year to date  Local authority    E92000001
#> 6430        2026          Week 4 Year to date  Local authority    E92000001
#> 6431        2026          Week 4 Year to date  Local authority    E92000001
#> 6432        2026          Week 4 Year to date  Local authority    E92000001
#> 6433        2026          Week 4 Year to date  Local authority    E92000001
#> 6434        2026          Week 4 Year to date  Local authority    E92000001
#> 6435        2026          Week 4 Year to date  Local authority    E92000001
#> 6436        2026          Week 4 Year to date  Local authority    E92000001
#> 6437        2026          Week 4 Year to date  Local authority    E92000001
#> 6438        2026          Week 4 Year to date  Local authority    E92000001
#> 6439        2026          Week 4 Year to date  Local authority    E92000001
#> 6440        2026          Week 4 Year to date  Local authority    E92000001
#> 6441        2026          Week 4 Year to date  Local authority    E92000001
#> 6442        2026          Week 4 Year to date  Local authority    E92000001
#> 6443        2026          Week 4 Year to date  Local authority    E92000001
#> 6444        2026          Week 4 Year to date  Local authority    E92000001
#> 6445        2026          Week 4 Year to date  Local authority    E92000001
#> 6446        2026          Week 4 Year to date  Local authority    E92000001
#> 6447        2026          Week 4 Year to date  Local authority    E92000001
#> 6448        2026          Week 4 Year to date  Local authority    E92000001
#> 6449        2026          Week 4 Year to date  Local authority    E92000001
#> 6450        2026          Week 4 Year to date  Local authority    E92000001
#> 6451        2026          Week 4 Year to date  Local authority    E92000001
#> 6452        2026          Week 4 Year to date  Local authority    E92000001
#> 6453        2026          Week 4 Year to date  Local authority    E92000001
#> 6454        2026          Week 4 Year to date  Local authority    E92000001
#> 6455        2026          Week 4 Year to date  Local authority    E92000001
#> 6456        2026          Week 4 Year to date  Local authority    E92000001
#> 6457        2026          Week 4 Year to date  Local authority    E92000001
#> 6458        2026          Week 4 Year to date  Local authority    E92000001
#> 6459        2026          Week 4 Year to date  Local authority    E92000001
#> 6460        2026          Week 4 Year to date  Local authority    E92000001
#> 6461        2026          Week 4 Year to date  Local authority    E92000001
#> 6462        2026          Week 4 Year to date  Local authority    E92000001
#> 6463        2026          Week 4 Year to date  Local authority    E92000001
#> 6464        2026          Week 4 Year to date  Local authority    E92000001
#> 6465        2026          Week 4 Year to date  Local authority    E92000001
#> 6466        2026          Week 4 Year to date  Local authority    E92000001
#> 6467        2026          Week 4 Year to date  Local authority    E92000001
#> 6468        2026          Week 4 Year to date  Local authority    E92000001
#> 6469        2026          Week 4 Year to date  Local authority    E92000001
#> 6470        2026          Week 4 Year to date  Local authority    E92000001
#> 6471        2026          Week 2 Year to date         National    E92000001
#> 6472        2026          Week 2 Year to date         National    E92000001
#> 6473        2026          Week 2 Year to date         National    E92000001
#> 6474        2026          Week 2 Year to date         National    E92000001
#> 6475        2026          Week 2 Year to date         Regional    E92000001
#> 6476        2026          Week 2 Year to date         Regional    E92000001
#> 6477        2026          Week 2 Year to date         Regional    E92000001
#> 6478        2026          Week 2 Year to date         Regional    E92000001
#> 6479        2026          Week 2 Year to date  Local authority    E92000001
#> 6480        2026          Week 2 Year to date  Local authority    E92000001
#> 6481        2026          Week 2 Year to date  Local authority    E92000001
#> 6482        2026          Week 2 Year to date  Local authority    E92000001
#> 6483        2026          Week 2 Year to date  Local authority    E92000001
#> 6484        2026          Week 2 Year to date  Local authority    E92000001
#> 6485        2026          Week 2 Year to date  Local authority    E92000001
#> 6486        2026          Week 2 Year to date  Local authority    E92000001
#> 6487        2026          Week 2 Year to date  Local authority    E92000001
#> 6488        2026          Week 2 Year to date  Local authority    E92000001
#> 6489        2026          Week 2 Year to date  Local authority    E92000001
#> 6490        2026          Week 2 Year to date  Local authority    E92000001
#> 6491        2026          Week 2 Year to date  Local authority    E92000001
#> 6492        2026          Week 2 Year to date  Local authority    E92000001
#> 6493        2026          Week 2 Year to date  Local authority    E92000001
#> 6494        2026          Week 2 Year to date  Local authority    E92000001
#> 6495        2026          Week 2 Year to date  Local authority    E92000001
#> 6496        2026          Week 2 Year to date  Local authority    E92000001
#> 6497        2026          Week 2 Year to date  Local authority    E92000001
#> 6498        2026          Week 2 Year to date  Local authority    E92000001
#> 6499        2026          Week 2 Year to date  Local authority    E92000001
#> 6500        2026          Week 2 Year to date  Local authority    E92000001
#> 6501        2026          Week 2 Year to date  Local authority    E92000001
#> 6502        2026          Week 2 Year to date  Local authority    E92000001
#> 6503        2026          Week 2 Year to date  Local authority    E92000001
#> 6504        2026          Week 2 Year to date  Local authority    E92000001
#> 6505        2026          Week 2 Year to date  Local authority    E92000001
#> 6506        2026          Week 2 Year to date  Local authority    E92000001
#> 6507        2026          Week 2 Year to date  Local authority    E92000001
#> 6508        2026          Week 2 Year to date  Local authority    E92000001
#> 6509        2026          Week 2 Year to date  Local authority    E92000001
#> 6510        2026          Week 2 Year to date  Local authority    E92000001
#> 6511        2026          Week 2 Year to date  Local authority    E92000001
#> 6512        2026          Week 2 Year to date  Local authority    E92000001
#> 6513        2026          Week 2 Year to date  Local authority    E92000001
#> 6514        2026          Week 2 Year to date  Local authority    E92000001
#> 6515        2026          Week 2 Year to date  Local authority    E92000001
#> 6516        2026          Week 2 Year to date  Local authority    E92000001
#> 6517        2026          Week 2 Year to date  Local authority    E92000001
#> 6518        2026          Week 2 Year to date  Local authority    E92000001
#> 6519        2026          Week 2 Year to date  Local authority    E92000001
#> 6520        2026          Week 2 Year to date  Local authority    E92000001
#> 6521        2026          Week 2 Year to date  Local authority    E92000001
#> 6522        2026          Week 2 Year to date  Local authority    E92000001
#> 6523        2026          Week 2 Year to date  Local authority    E92000001
#> 6524        2026          Week 2 Year to date  Local authority    E92000001
#> 6525        2026          Week 2 Year to date  Local authority    E92000001
#> 6526        2026          Week 2 Year to date  Local authority    E92000001
#> 6527        2026          Week 2 Year to date         Regional    E92000001
#> 6528        2026          Week 2 Year to date         Regional    E92000001
#> 6529        2026          Week 2 Year to date         Regional    E92000001
#> 6530        2026          Week 2 Year to date         Regional    E92000001
#> 6531        2026          Week 2 Year to date  Local authority    E92000001
#> 6532        2026          Week 2 Year to date  Local authority    E92000001
#> 6533        2026          Week 2 Year to date  Local authority    E92000001
#> 6534        2026          Week 2 Year to date  Local authority    E92000001
#> 6535        2026          Week 2 Year to date  Local authority    E92000001
#> 6536        2026          Week 2 Year to date  Local authority    E92000001
#> 6537        2026          Week 2 Year to date  Local authority    E92000001
#> 6538        2026          Week 2 Year to date  Local authority    E92000001
#> 6539        2026          Week 2 Year to date  Local authority    E92000001
#> 6540        2026          Week 2 Year to date  Local authority    E92000001
#> 6541        2026          Week 2 Year to date  Local authority    E92000001
#> 6542        2026          Week 2 Year to date  Local authority    E92000001
#> 6543        2026          Week 2 Year to date  Local authority    E92000001
#> 6544        2026          Week 2 Year to date  Local authority    E92000001
#> 6545        2026          Week 2 Year to date  Local authority    E92000001
#> 6546        2026          Week 2 Year to date  Local authority    E92000001
#> 6547        2026          Week 2 Year to date  Local authority    E92000001
#> 6548        2026          Week 2 Year to date  Local authority    E92000001
#> 6549        2026          Week 2 Year to date  Local authority    E92000001
#> 6550        2026          Week 2 Year to date  Local authority    E92000001
#> 6551        2026          Week 2 Year to date  Local authority    E92000001
#> 6552        2026          Week 2 Year to date  Local authority    E92000001
#> 6553        2026          Week 2 Year to date  Local authority    E92000001
#> 6554        2026          Week 2 Year to date  Local authority    E92000001
#> 6555        2026          Week 2 Year to date  Local authority    E92000001
#> 6556        2026          Week 2 Year to date  Local authority    E92000001
#> 6557        2026          Week 2 Year to date  Local authority    E92000001
#> 6558        2026          Week 2 Year to date  Local authority    E92000001
#> 6559        2026          Week 2 Year to date  Local authority    E92000001
#> 6560        2026          Week 2 Year to date  Local authority    E92000001
#> 6561        2026          Week 2 Year to date  Local authority    E92000001
#> 6562        2026          Week 2 Year to date  Local authority    E92000001
#> 6563        2026          Week 2 Year to date  Local authority    E92000001
#> 6564        2026          Week 2 Year to date  Local authority    E92000001
#> 6565        2026          Week 2 Year to date  Local authority    E92000001
#> 6566        2026          Week 2 Year to date  Local authority    E92000001
#> 6567        2026          Week 2 Year to date  Local authority    E92000001
#> 6568        2026          Week 2 Year to date  Local authority    E92000001
#> 6569        2026          Week 2 Year to date  Local authority    E92000001
#> 6570        2026          Week 2 Year to date  Local authority    E92000001
#> 6571        2026          Week 2 Year to date  Local authority    E92000001
#> 6572        2026          Week 2 Year to date  Local authority    E92000001
#> 6573        2026          Week 2 Year to date  Local authority    E92000001
#> 6574        2026          Week 2 Year to date  Local authority    E92000001
#> 6575        2026          Week 2 Year to date  Local authority    E92000001
#> 6576        2026          Week 2 Year to date  Local authority    E92000001
#> 6577        2026          Week 2 Year to date  Local authority    E92000001
#> 6578        2026          Week 2 Year to date  Local authority    E92000001
#> 6579        2026          Week 2 Year to date  Local authority    E92000001
#> 6580        2026          Week 2 Year to date  Local authority    E92000001
#> 6581        2026          Week 2 Year to date  Local authority    E92000001
#> 6582        2026          Week 2 Year to date  Local authority    E92000001
#> 6583        2026          Week 2 Year to date  Local authority    E92000001
#> 6584        2026          Week 2 Year to date  Local authority    E92000001
#> 6585        2026          Week 2 Year to date  Local authority    E92000001
#> 6586        2026          Week 2 Year to date  Local authority    E92000001
#> 6587        2026          Week 2 Year to date  Local authority    E92000001
#> 6588        2026          Week 2 Year to date  Local authority    E92000001
#> 6589        2026          Week 2 Year to date  Local authority    E92000001
#> 6590        2026          Week 2 Year to date  Local authority    E92000001
#> 6591        2026          Week 2 Year to date  Local authority    E92000001
#> 6592        2026          Week 2 Year to date  Local authority    E92000001
#> 6593        2026          Week 2 Year to date  Local authority    E92000001
#> 6594        2026          Week 2 Year to date  Local authority    E92000001
#> 6595        2026          Week 2 Year to date  Local authority    E92000001
#> 6596        2026          Week 2 Year to date  Local authority    E92000001
#> 6597        2026          Week 2 Year to date  Local authority    E92000001
#> 6598        2026          Week 2 Year to date  Local authority    E92000001
#> 6599        2026          Week 2 Year to date  Local authority    E92000001
#> 6600        2026          Week 2 Year to date  Local authority    E92000001
#> 6601        2026          Week 2 Year to date  Local authority    E92000001
#> 6602        2026          Week 2 Year to date  Local authority    E92000001
#> 6603        2026          Week 2 Year to date  Local authority    E92000001
#> 6604        2026          Week 2 Year to date  Local authority    E92000001
#> 6605        2026          Week 2 Year to date  Local authority    E92000001
#> 6606        2026          Week 2 Year to date  Local authority    E92000001
#> 6607        2026          Week 2 Year to date  Local authority    E92000001
#> 6608        2026          Week 2 Year to date  Local authority    E92000001
#> 6609        2026          Week 2 Year to date  Local authority    E92000001
#> 6610        2026          Week 2 Year to date  Local authority    E92000001
#> 6611        2026          Week 2 Year to date  Local authority    E92000001
#> 6612        2026          Week 2 Year to date  Local authority    E92000001
#> 6613        2026          Week 2 Year to date  Local authority    E92000001
#> 6614        2026          Week 2 Year to date  Local authority    E92000001
#> 6615        2026          Week 2 Year to date  Local authority    E92000001
#> 6616        2026          Week 2 Year to date  Local authority    E92000001
#> 6617        2026          Week 2 Year to date  Local authority    E92000001
#> 6618        2026          Week 2 Year to date  Local authority    E92000001
#> 6619        2026          Week 2 Year to date  Local authority    E92000001
#> 6620        2026          Week 2 Year to date  Local authority    E92000001
#> 6621        2026          Week 2 Year to date  Local authority    E92000001
#> 6622        2026          Week 2 Year to date  Local authority    E92000001
#> 6623        2026          Week 2 Year to date  Local authority    E92000001
#> 6624        2026          Week 2 Year to date  Local authority    E92000001
#> 6625        2026          Week 2 Year to date  Local authority    E92000001
#> 6626        2026          Week 2 Year to date  Local authority    E92000001
#> 6627        2026          Week 2 Year to date         Regional    E92000001
#> 6628        2026          Week 2 Year to date         Regional    E92000001
#> 6629        2026          Week 2 Year to date         Regional    E92000001
#> 6630        2026          Week 2 Year to date         Regional    E92000001
#> 6631        2026          Week 2 Year to date  Local authority    E92000001
#> 6632        2026          Week 2 Year to date  Local authority    E92000001
#> 6633        2026          Week 2 Year to date  Local authority    E92000001
#> 6634        2026          Week 2 Year to date  Local authority    E92000001
#> 6635        2026          Week 2 Year to date  Local authority    E92000001
#> 6636        2026          Week 2 Year to date  Local authority    E92000001
#> 6637        2026          Week 2 Year to date  Local authority    E92000001
#> 6638        2026          Week 2 Year to date  Local authority    E92000001
#> 6639        2026          Week 2 Year to date  Local authority    E92000001
#> 6640        2026          Week 2 Year to date  Local authority    E92000001
#> 6641        2026          Week 2 Year to date  Local authority    E92000001
#> 6642        2026          Week 2 Year to date  Local authority    E92000001
#> 6643        2026          Week 2 Year to date  Local authority    E92000001
#> 6644        2026          Week 2 Year to date  Local authority    E92000001
#> 6645        2026          Week 2 Year to date  Local authority    E92000001
#> 6646        2026          Week 2 Year to date  Local authority    E92000001
#> 6647        2026          Week 2 Year to date  Local authority    E92000001
#> 6648        2026          Week 2 Year to date  Local authority    E92000001
#> 6649        2026          Week 2 Year to date  Local authority    E92000001
#> 6650        2026          Week 2 Year to date  Local authority    E92000001
#> 6651        2026          Week 2 Year to date  Local authority    E92000001
#> 6652        2026          Week 2 Year to date  Local authority    E92000001
#> 6653        2026          Week 2 Year to date  Local authority    E92000001
#> 6654        2026          Week 2 Year to date  Local authority    E92000001
#> 6655        2026          Week 2 Year to date  Local authority    E92000001
#> 6656        2026          Week 2 Year to date  Local authority    E92000001
#> 6657        2026          Week 2 Year to date  Local authority    E92000001
#> 6658        2026          Week 2 Year to date  Local authority    E92000001
#> 6659        2026          Week 2 Year to date  Local authority    E92000001
#> 6660        2026          Week 2 Year to date  Local authority    E92000001
#> 6661        2026          Week 2 Year to date  Local authority    E92000001
#> 6662        2026          Week 2 Year to date  Local authority    E92000001
#> 6663        2026          Week 2 Year to date  Local authority    E92000001
#> 6664        2026          Week 2 Year to date  Local authority    E92000001
#> 6665        2026          Week 2 Year to date  Local authority    E92000001
#> 6666        2026          Week 2 Year to date  Local authority    E92000001
#> 6667        2026          Week 2 Year to date  Local authority    E92000001
#> 6668        2026          Week 2 Year to date  Local authority    E92000001
#> 6669        2026          Week 2 Year to date  Local authority    E92000001
#> 6670        2026          Week 2 Year to date  Local authority    E92000001
#> 6671        2026          Week 2 Year to date  Local authority    E92000001
#> 6672        2026          Week 2 Year to date  Local authority    E92000001
#> 6673        2026          Week 2 Year to date  Local authority    E92000001
#> 6674        2026          Week 2 Year to date  Local authority    E92000001
#> 6675        2026          Week 2 Year to date  Local authority    E92000001
#> 6676        2026          Week 2 Year to date  Local authority    E92000001
#> 6677        2026          Week 2 Year to date  Local authority    E92000001
#> 6678        2026          Week 2 Year to date  Local authority    E92000001
#> 6679        2026          Week 2 Year to date  Local authority    E92000001
#> 6680        2026          Week 2 Year to date  Local authority    E92000001
#> 6681        2026          Week 2 Year to date  Local authority    E92000001
#> 6682        2026          Week 2 Year to date  Local authority    E92000001
#> 6683        2026          Week 2 Year to date  Local authority    E92000001
#> 6684        2026          Week 2 Year to date  Local authority    E92000001
#> 6685        2026          Week 2 Year to date  Local authority    E92000001
#> 6686        2026          Week 2 Year to date  Local authority    E92000001
#> 6687        2026          Week 2 Year to date  Local authority    E92000001
#> 6688        2026          Week 2 Year to date  Local authority    E92000001
#> 6689        2026          Week 2 Year to date  Local authority    E92000001
#> 6690        2026          Week 2 Year to date  Local authority    E92000001
#> 6691        2026          Week 2 Year to date         Regional    E92000001
#> 6692        2026          Week 2 Year to date         Regional    E92000001
#> 6693        2026          Week 2 Year to date         Regional    E92000001
#> 6694        2026          Week 2 Year to date         Regional    E92000001
#> 6695        2026          Week 2 Year to date  Local authority    E92000001
#> 6696        2026          Week 2 Year to date  Local authority    E92000001
#> 6697        2026          Week 2 Year to date  Local authority    E92000001
#> 6698        2026          Week 2 Year to date  Local authority    E92000001
#> 6699        2026          Week 2 Year to date  Local authority    E92000001
#> 6700        2026          Week 2 Year to date  Local authority    E92000001
#> 6701        2026          Week 2 Year to date  Local authority    E92000001
#> 6702        2026          Week 2 Year to date  Local authority    E92000001
#> 6703        2026          Week 2 Year to date  Local authority    E92000001
#> 6704        2026          Week 2 Year to date  Local authority    E92000001
#> 6705        2026          Week 2 Year to date  Local authority    E92000001
#> 6706        2026          Week 2 Year to date  Local authority    E92000001
#> 6707        2026          Week 2 Year to date  Local authority    E92000001
#> 6708        2026          Week 2 Year to date  Local authority    E92000001
#> 6709        2026          Week 2 Year to date  Local authority    E92000001
#> 6710        2026          Week 2 Year to date  Local authority    E92000001
#> 6711        2026          Week 2 Year to date  Local authority    E92000001
#> 6712        2026          Week 2 Year to date  Local authority    E92000001
#> 6713        2026          Week 2 Year to date  Local authority    E92000001
#> 6714        2026          Week 2 Year to date  Local authority    E92000001
#> 6715        2026          Week 2 Year to date  Local authority    E92000001
#> 6716        2026          Week 2 Year to date  Local authority    E92000001
#> 6717        2026          Week 2 Year to date  Local authority    E92000001
#> 6718        2026          Week 2 Year to date  Local authority    E92000001
#> 6719        2026          Week 2 Year to date  Local authority    E92000001
#> 6720        2026          Week 2 Year to date  Local authority    E92000001
#> 6721        2026          Week 2 Year to date  Local authority    E92000001
#> 6722        2026          Week 2 Year to date  Local authority    E92000001
#> 6723        2026          Week 2 Year to date  Local authority    E92000001
#> 6724        2026          Week 2 Year to date  Local authority    E92000001
#> 6725        2026          Week 2 Year to date  Local authority    E92000001
#> 6726        2026          Week 2 Year to date  Local authority    E92000001
#> 6727        2026          Week 2 Year to date  Local authority    E92000001
#> 6728        2026          Week 2 Year to date  Local authority    E92000001
#> 6729        2026          Week 2 Year to date  Local authority    E92000001
#> 6730        2026          Week 2 Year to date  Local authority    E92000001
#> 6731        2026          Week 2 Year to date  Local authority    E92000001
#> 6732        2026          Week 2 Year to date  Local authority    E92000001
#> 6733        2026          Week 2 Year to date  Local authority    E92000001
#> 6734        2026          Week 2 Year to date         Regional    E92000001
#> 6735        2026          Week 2 Year to date         Regional    E92000001
#> 6736        2026          Week 2 Year to date         Regional    E92000001
#> 6737        2026          Week 2 Year to date         Regional    E92000001
#> 6738        2026          Week 2 Year to date  Local authority    E92000001
#> 6739        2026          Week 2 Year to date  Local authority    E92000001
#> 6740        2026          Week 2 Year to date  Local authority    E92000001
#> 6741        2026          Week 2 Year to date  Local authority    E92000001
#> 6742        2026          Week 2 Year to date  Local authority    E92000001
#> 6743        2026          Week 2 Year to date  Local authority    E92000001
#> 6744        2026          Week 2 Year to date  Local authority    E92000001
#> 6745        2026          Week 2 Year to date  Local authority    E92000001
#> 6746        2026          Week 2 Year to date  Local authority    E92000001
#> 6747        2026          Week 2 Year to date  Local authority    E92000001
#> 6748        2026          Week 2 Year to date  Local authority    E92000001
#> 6749        2026          Week 2 Year to date  Local authority    E92000001
#> 6750        2026          Week 2 Year to date  Local authority    E92000001
#> 6751        2026          Week 2 Year to date  Local authority    E92000001
#> 6752        2026          Week 2 Year to date  Local authority    E92000001
#> 6753        2026          Week 2 Year to date  Local authority    E92000001
#> 6754        2026          Week 2 Year to date  Local authority    E92000001
#> 6755        2026          Week 2 Year to date  Local authority    E92000001
#> 6756        2026          Week 2 Year to date  Local authority    E92000001
#> 6757        2026          Week 2 Year to date  Local authority    E92000001
#> 6758        2026          Week 2 Year to date  Local authority    E92000001
#> 6759        2026          Week 2 Year to date  Local authority    E92000001
#> 6760        2026          Week 2 Year to date  Local authority    E92000001
#> 6761        2026          Week 2 Year to date  Local authority    E92000001
#> 6762        2026          Week 2 Year to date  Local authority    E92000001
#> 6763        2026          Week 2 Year to date  Local authority    E92000001
#> 6764        2026          Week 2 Year to date  Local authority    E92000001
#> 6765        2026          Week 2 Year to date  Local authority    E92000001
#> 6766        2026          Week 2 Year to date  Local authority    E92000001
#> 6767        2026          Week 2 Year to date  Local authority    E92000001
#> 6768        2026          Week 2 Year to date  Local authority    E92000001
#> 6769        2026          Week 2 Year to date  Local authority    E92000001
#> 6770        2026          Week 2 Year to date  Local authority    E92000001
#> 6771        2026          Week 2 Year to date  Local authority    E92000001
#> 6772        2026          Week 2 Year to date  Local authority    E92000001
#> 6773        2026          Week 2 Year to date  Local authority    E92000001
#> 6774        2026          Week 2 Year to date  Local authority    E92000001
#> 6775        2026          Week 2 Year to date  Local authority    E92000001
#> 6776        2026          Week 2 Year to date  Local authority    E92000001
#> 6777        2026          Week 2 Year to date  Local authority    E92000001
#> 6778        2026          Week 2 Year to date  Local authority    E92000001
#> 6779        2026          Week 2 Year to date  Local authority    E92000001
#> 6780        2026          Week 2 Year to date  Local authority    E92000001
#> 6781        2026          Week 2 Year to date  Local authority    E92000001
#> 6782        2026          Week 2 Year to date  Local authority    E92000001
#> 6783        2026          Week 2 Year to date  Local authority    E92000001
#> 6784        2026          Week 2 Year to date  Local authority    E92000001
#> 6785        2026          Week 2 Year to date  Local authority    E92000001
#> 6786        2026          Week 2 Year to date  Local authority    E92000001
#> 6787        2026          Week 2 Year to date  Local authority    E92000001
#> 6788        2026          Week 2 Year to date  Local authority    E92000001
#> 6789        2026          Week 2 Year to date  Local authority    E92000001
#> 6790        2026          Week 2 Year to date  Local authority    E92000001
#> 6791        2026          Week 2 Year to date  Local authority    E92000001
#> 6792        2026          Week 2 Year to date  Local authority    E92000001
#> 6793        2026          Week 2 Year to date  Local authority    E92000001
#> 6794        2026          Week 2 Year to date         Regional    E92000001
#> 6795        2026          Week 2 Year to date         Regional    E92000001
#> 6796        2026          Week 2 Year to date         Regional    E92000001
#> 6797        2026          Week 2 Year to date         Regional    E92000001
#> 6798        2026          Week 2 Year to date  Local authority    E92000001
#> 6799        2026          Week 2 Year to date  Local authority    E92000001
#> 6800        2026          Week 2 Year to date  Local authority    E92000001
#> 6801        2026          Week 2 Year to date  Local authority    E92000001
#> 6802        2026          Week 2 Year to date  Local authority    E92000001
#> 6803        2026          Week 2 Year to date  Local authority    E92000001
#> 6804        2026          Week 2 Year to date  Local authority    E92000001
#> 6805        2026          Week 2 Year to date  Local authority    E92000001
#> 6806        2026          Week 2 Year to date  Local authority    E92000001
#> 6807        2026          Week 2 Year to date  Local authority    E92000001
#> 6808        2026          Week 2 Year to date  Local authority    E92000001
#> 6809        2026          Week 2 Year to date  Local authority    E92000001
#> 6810        2026          Week 2 Year to date  Local authority    E92000001
#> 6811        2026          Week 2 Year to date  Local authority    E92000001
#> 6812        2026          Week 2 Year to date  Local authority    E92000001
#> 6813        2026          Week 2 Year to date  Local authority    E92000001
#> 6814        2026          Week 2 Year to date  Local authority    E92000001
#> 6815        2026          Week 2 Year to date  Local authority    E92000001
#> 6816        2026          Week 2 Year to date  Local authority    E92000001
#> 6817        2026          Week 2 Year to date  Local authority    E92000001
#> 6818        2026          Week 2 Year to date  Local authority    E92000001
#> 6819        2026          Week 2 Year to date  Local authority    E92000001
#> 6820        2026          Week 2 Year to date  Local authority    E92000001
#> 6821        2026          Week 2 Year to date  Local authority    E92000001
#> 6822        2026          Week 2 Year to date  Local authority    E92000001
#> 6823        2026          Week 2 Year to date  Local authority    E92000001
#> 6824        2026          Week 2 Year to date  Local authority    E92000001
#> 6825        2026          Week 2 Year to date  Local authority    E92000001
#> 6826        2026          Week 2 Year to date  Local authority    E92000001
#> 6827        2026          Week 2 Year to date  Local authority    E92000001
#> 6828        2026          Week 2 Year to date  Local authority    E92000001
#> 6829        2026          Week 2 Year to date  Local authority    E92000001
#> 6830        2026          Week 2 Year to date  Local authority    E92000001
#> 6831        2026          Week 2 Year to date  Local authority    E92000001
#> 6832        2026          Week 2 Year to date  Local authority    E92000001
#> 6833        2026          Week 2 Year to date  Local authority    E92000001
#> 6834        2026          Week 2 Year to date  Local authority    E92000001
#> 6835        2026          Week 2 Year to date  Local authority    E92000001
#> 6836        2026          Week 2 Year to date  Local authority    E92000001
#> 6837        2026          Week 2 Year to date  Local authority    E92000001
#> 6838        2026          Week 2 Year to date  Local authority    E92000001
#> 6839        2026          Week 2 Year to date  Local authority    E92000001
#> 6840        2026          Week 2 Year to date  Local authority    E92000001
#> 6841        2026          Week 2 Year to date  Local authority    E92000001
#> 6842        2026          Week 2 Year to date         Regional    E92000001
#> 6843        2026          Week 2 Year to date         Regional    E92000001
#> 6844        2026          Week 2 Year to date         Regional    E92000001
#> 6845        2026          Week 2 Year to date         Regional    E92000001
#> 6846        2026          Week 2 Year to date  Local authority    E92000001
#> 6847        2026          Week 2 Year to date  Local authority    E92000001
#> 6848        2026          Week 2 Year to date  Local authority    E92000001
#> 6849        2026          Week 2 Year to date  Local authority    E92000001
#> 6850        2026          Week 2 Year to date  Local authority    E92000001
#> 6851        2026          Week 2 Year to date  Local authority    E92000001
#> 6852        2026          Week 2 Year to date  Local authority    E92000001
#> 6853        2026          Week 2 Year to date  Local authority    E92000001
#> 6854        2026          Week 2 Year to date  Local authority    E92000001
#> 6855        2026          Week 2 Year to date  Local authority    E92000001
#> 6856        2026          Week 2 Year to date  Local authority    E92000001
#> 6857        2026          Week 2 Year to date  Local authority    E92000001
#> 6858        2026          Week 2 Year to date  Local authority    E92000001
#> 6859        2026          Week 2 Year to date  Local authority    E92000001
#> 6860        2026          Week 2 Year to date  Local authority    E92000001
#> 6861        2026          Week 2 Year to date  Local authority    E92000001
#> 6862        2026          Week 2 Year to date  Local authority    E92000001
#> 6863        2026          Week 2 Year to date  Local authority    E92000001
#> 6864        2026          Week 2 Year to date  Local authority    E92000001
#> 6865        2026          Week 2 Year to date  Local authority    E92000001
#> 6866        2026          Week 2 Year to date  Local authority    E92000001
#> 6867        2026          Week 2 Year to date  Local authority    E92000001
#> 6868        2026          Week 2 Year to date  Local authority    E92000001
#> 6869        2026          Week 2 Year to date  Local authority    E92000001
#> 6870        2026          Week 2 Year to date  Local authority    E92000001
#> 6871        2026          Week 2 Year to date  Local authority    E92000001
#> 6872        2026          Week 2 Year to date  Local authority    E92000001
#> 6873        2026          Week 2 Year to date  Local authority    E92000001
#> 6874        2026          Week 2 Year to date  Local authority    E92000001
#> 6875        2026          Week 2 Year to date  Local authority    E92000001
#> 6876        2026          Week 2 Year to date  Local authority    E92000001
#> 6877        2026          Week 2 Year to date  Local authority    E92000001
#> 6878        2026          Week 2 Year to date  Local authority    E92000001
#> 6879        2026          Week 2 Year to date  Local authority    E92000001
#> 6880        2026          Week 2 Year to date  Local authority    E92000001
#> 6881        2026          Week 2 Year to date  Local authority    E92000001
#> 6882        2026          Week 2 Year to date  Local authority    E92000001
#> 6883        2026          Week 2 Year to date  Local authority    E92000001
#> 6884        2026          Week 2 Year to date  Local authority    E92000001
#> 6885        2026          Week 2 Year to date  Local authority    E92000001
#> 6886        2026          Week 2 Year to date  Local authority    E92000001
#> 6887        2026          Week 2 Year to date  Local authority    E92000001
#> 6888        2026          Week 2 Year to date  Local authority    E92000001
#> 6889        2026          Week 2 Year to date  Local authority    E92000001
#> 6890        2026          Week 2 Year to date  Local authority    E92000001
#> 6891        2026          Week 2 Year to date  Local authority    E92000001
#> 6892        2026          Week 2 Year to date  Local authority    E92000001
#> 6893        2026          Week 2 Year to date  Local authority    E92000001
#> 6894        2026          Week 2 Year to date  Local authority    E92000001
#> 6895        2026          Week 2 Year to date  Local authority    E92000001
#> 6896        2026          Week 2 Year to date  Local authority    E92000001
#> 6897        2026          Week 2 Year to date  Local authority    E92000001
#> 6898        2026          Week 2 Year to date  Local authority    E92000001
#> 6899        2026          Week 2 Year to date  Local authority    E92000001
#> 6900        2026          Week 2 Year to date  Local authority    E92000001
#> 6901        2026          Week 2 Year to date  Local authority    E92000001
#> 6902        2026          Week 2 Year to date  Local authority    E92000001
#> 6903        2026          Week 2 Year to date  Local authority    E92000001
#> 6904        2026          Week 2 Year to date  Local authority    E92000001
#> 6905        2026          Week 2 Year to date  Local authority    E92000001
#> 6906        2026          Week 2 Year to date  Local authority    E92000001
#> 6907        2026          Week 2 Year to date  Local authority    E92000001
#> 6908        2026          Week 2 Year to date  Local authority    E92000001
#> 6909        2026          Week 2 Year to date  Local authority    E92000001
#> 6910        2026          Week 2 Year to date  Local authority    E92000001
#> 6911        2026          Week 2 Year to date  Local authority    E92000001
#> 6912        2026          Week 2 Year to date  Local authority    E92000001
#> 6913        2026          Week 2 Year to date  Local authority    E92000001
#> 6914        2026          Week 2 Year to date  Local authority    E92000001
#> 6915        2026          Week 2 Year to date  Local authority    E92000001
#> 6916        2026          Week 2 Year to date  Local authority    E92000001
#> 6917        2026          Week 2 Year to date  Local authority    E92000001
#> 6918        2026          Week 2 Year to date  Local authority    E92000001
#> 6919        2026          Week 2 Year to date  Local authority    E92000001
#> 6920        2026          Week 2 Year to date  Local authority    E92000001
#> 6921        2026          Week 2 Year to date  Local authority    E92000001
#> 6922        2026          Week 2 Year to date  Local authority    E92000001
#> 6923        2026          Week 2 Year to date  Local authority    E92000001
#> 6924        2026          Week 2 Year to date  Local authority    E92000001
#> 6925        2026          Week 2 Year to date  Local authority    E92000001
#> 6926        2026          Week 2 Year to date  Local authority    E92000001
#> 6927        2026          Week 2 Year to date  Local authority    E92000001
#> 6928        2026          Week 2 Year to date  Local authority    E92000001
#> 6929        2026          Week 2 Year to date  Local authority    E92000001
#> 6930        2026          Week 2 Year to date  Local authority    E92000001
#> 6931        2026          Week 2 Year to date  Local authority    E92000001
#> 6932        2026          Week 2 Year to date  Local authority    E92000001
#> 6933        2026          Week 2 Year to date  Local authority    E92000001
#> 6934        2026          Week 2 Year to date  Local authority    E92000001
#> 6935        2026          Week 2 Year to date  Local authority    E92000001
#> 6936        2026          Week 2 Year to date  Local authority    E92000001
#> 6937        2026          Week 2 Year to date  Local authority    E92000001
#> 6938        2026          Week 2 Year to date  Local authority    E92000001
#> 6939        2026          Week 2 Year to date  Local authority    E92000001
#> 6940        2026          Week 2 Year to date  Local authority    E92000001
#> 6941        2026          Week 2 Year to date  Local authority    E92000001
#> 6942        2026          Week 2 Year to date  Local authority    E92000001
#> 6943        2026          Week 2 Year to date  Local authority    E92000001
#> 6944        2026          Week 2 Year to date  Local authority    E92000001
#> 6945        2026          Week 2 Year to date  Local authority    E92000001
#> 6946        2026          Week 2 Year to date  Local authority    E92000001
#> 6947        2026          Week 2 Year to date  Local authority    E92000001
#> 6948        2026          Week 2 Year to date  Local authority    E92000001
#> 6949        2026          Week 2 Year to date  Local authority    E92000001
#> 6950        2026          Week 2 Year to date  Local authority    E92000001
#> 6951        2026          Week 2 Year to date  Local authority    E92000001
#> 6952        2026          Week 2 Year to date  Local authority    E92000001
#> 6953        2026          Week 2 Year to date  Local authority    E92000001
#> 6954        2026          Week 2 Year to date  Local authority    E92000001
#> 6955        2026          Week 2 Year to date  Local authority    E92000001
#> 6956        2026          Week 2 Year to date  Local authority    E92000001
#> 6957        2026          Week 2 Year to date  Local authority    E92000001
#> 6958        2026          Week 2 Year to date  Local authority    E92000001
#> 6959        2026          Week 2 Year to date  Local authority    E92000001
#> 6960        2026          Week 2 Year to date  Local authority    E92000001
#> 6961        2026          Week 2 Year to date  Local authority    E92000001
#> 6962        2026          Week 2 Year to date  Local authority    E92000001
#> 6963        2026          Week 2 Year to date  Local authority    E92000001
#> 6964        2026          Week 2 Year to date  Local authority    E92000001
#> 6965        2026          Week 2 Year to date  Local authority    E92000001
#> 6966        2026          Week 2 Year to date  Local authority    E92000001
#> 6967        2026          Week 2 Year to date  Local authority    E92000001
#> 6968        2026          Week 2 Year to date  Local authority    E92000001
#> 6969        2026          Week 2 Year to date  Local authority    E92000001
#> 6970        2026          Week 2 Year to date  Local authority    E92000001
#> 6971        2026          Week 2 Year to date  Local authority    E92000001
#> 6972        2026          Week 2 Year to date  Local authority    E92000001
#> 6973        2026          Week 2 Year to date  Local authority    E92000001
#> 6974        2026          Week 2 Year to date  Local authority    E92000001
#> 6975        2026          Week 2 Year to date  Local authority    E92000001
#> 6976        2026          Week 2 Year to date         Regional    E92000001
#> 6977        2026          Week 2 Year to date         Regional    E92000001
#> 6978        2026          Week 2 Year to date         Regional    E92000001
#> 6979        2026          Week 2 Year to date         Regional    E92000001
#> 6980        2026          Week 2 Year to date  Local authority    E92000001
#> 6981        2026          Week 2 Year to date  Local authority    E92000001
#> 6982        2026          Week 2 Year to date  Local authority    E92000001
#> 6983        2026          Week 2 Year to date  Local authority    E92000001
#> 6984        2026          Week 2 Year to date  Local authority    E92000001
#> 6985        2026          Week 2 Year to date  Local authority    E92000001
#> 6986        2026          Week 2 Year to date  Local authority    E92000001
#> 6987        2026          Week 2 Year to date  Local authority    E92000001
#> 6988        2026          Week 2 Year to date  Local authority    E92000001
#> 6989        2026          Week 2 Year to date  Local authority    E92000001
#> 6990        2026          Week 2 Year to date  Local authority    E92000001
#> 6991        2026          Week 2 Year to date  Local authority    E92000001
#> 6992        2026          Week 2 Year to date  Local authority    E92000001
#> 6993        2026          Week 2 Year to date  Local authority    E92000001
#> 6994        2026          Week 2 Year to date  Local authority    E92000001
#> 6995        2026          Week 2 Year to date  Local authority    E92000001
#> 6996        2026          Week 2 Year to date  Local authority    E92000001
#> 6997        2026          Week 2 Year to date  Local authority    E92000001
#> 6998        2026          Week 2 Year to date  Local authority    E92000001
#> 6999        2026          Week 2 Year to date  Local authority    E92000001
#> 7000        2026          Week 2 Year to date  Local authority    E92000001
#> 7001        2026          Week 2 Year to date  Local authority    E92000001
#> 7002        2026          Week 2 Year to date  Local authority    E92000001
#> 7003        2026          Week 2 Year to date  Local authority    E92000001
#> 7004        2026          Week 2 Year to date  Local authority    E92000001
#> 7005        2026          Week 2 Year to date  Local authority    E92000001
#> 7006        2026          Week 2 Year to date  Local authority    E92000001
#> 7007        2026          Week 2 Year to date  Local authority    E92000001
#> 7008        2026          Week 2 Year to date  Local authority    E92000001
#> 7009        2026          Week 2 Year to date  Local authority    E92000001
#> 7010        2026          Week 2 Year to date  Local authority    E92000001
#> 7011        2026          Week 2 Year to date  Local authority    E92000001
#> 7012        2026          Week 2 Year to date  Local authority    E92000001
#> 7013        2026          Week 2 Year to date  Local authority    E92000001
#> 7014        2026          Week 2 Year to date  Local authority    E92000001
#> 7015        2026          Week 2 Year to date  Local authority    E92000001
#> 7016        2026          Week 2 Year to date  Local authority    E92000001
#> 7017        2026          Week 2 Year to date  Local authority    E92000001
#> 7018        2026          Week 2 Year to date  Local authority    E92000001
#> 7019        2026          Week 2 Year to date  Local authority    E92000001
#> 7020        2026          Week 2 Year to date  Local authority    E92000001
#> 7021        2026          Week 2 Year to date  Local authority    E92000001
#> 7022        2026          Week 2 Year to date  Local authority    E92000001
#> 7023        2026          Week 2 Year to date  Local authority    E92000001
#> 7024        2026          Week 2 Year to date  Local authority    E92000001
#> 7025        2026          Week 2 Year to date  Local authority    E92000001
#> 7026        2026          Week 2 Year to date  Local authority    E92000001
#> 7027        2026          Week 2 Year to date  Local authority    E92000001
#> 7028        2026          Week 2 Year to date  Local authority    E92000001
#> 7029        2026          Week 2 Year to date  Local authority    E92000001
#> 7030        2026          Week 2 Year to date  Local authority    E92000001
#> 7031        2026          Week 2 Year to date  Local authority    E92000001
#> 7032        2026          Week 2 Year to date  Local authority    E92000001
#> 7033        2026          Week 2 Year to date  Local authority    E92000001
#> 7034        2026          Week 2 Year to date  Local authority    E92000001
#> 7035        2026          Week 2 Year to date  Local authority    E92000001
#> 7036        2026          Week 2 Year to date  Local authority    E92000001
#> 7037        2026          Week 2 Year to date  Local authority    E92000001
#> 7038        2026          Week 2 Year to date  Local authority    E92000001
#> 7039        2026          Week 2 Year to date  Local authority    E92000001
#> 7040        2026          Week 2 Year to date  Local authority    E92000001
#> 7041        2026          Week 2 Year to date  Local authority    E92000001
#> 7042        2026          Week 2 Year to date  Local authority    E92000001
#> 7043        2026          Week 2 Year to date  Local authority    E92000001
#> 7044        2026          Week 2 Year to date  Local authority    E92000001
#> 7045        2026          Week 2 Year to date  Local authority    E92000001
#> 7046        2026          Week 2 Year to date  Local authority    E92000001
#> 7047        2026          Week 2 Year to date  Local authority    E92000001
#> 7048        2026          Week 2 Year to date  Local authority    E92000001
#> 7049        2026          Week 2 Year to date  Local authority    E92000001
#> 7050        2026          Week 2 Year to date  Local authority    E92000001
#> 7051        2026          Week 2 Year to date  Local authority    E92000001
#> 7052        2026          Week 2 Year to date  Local authority    E92000001
#> 7053        2026          Week 2 Year to date  Local authority    E92000001
#> 7054        2026          Week 2 Year to date  Local authority    E92000001
#> 7055        2026          Week 2 Year to date  Local authority    E92000001
#> 7056        2026          Week 2 Year to date         Regional    E92000001
#> 7057        2026          Week 2 Year to date         Regional    E92000001
#> 7058        2026          Week 2 Year to date         Regional    E92000001
#> 7059        2026          Week 2 Year to date         Regional    E92000001
#> 7060        2026          Week 2 Year to date  Local authority    E92000001
#> 7061        2026          Week 2 Year to date  Local authority    E92000001
#> 7062        2026          Week 2 Year to date  Local authority    E92000001
#> 7063        2026          Week 2 Year to date  Local authority    E92000001
#> 7064        2026          Week 2 Year to date  Local authority    E92000001
#> 7065        2026          Week 2 Year to date  Local authority    E92000001
#> 7066        2026          Week 2 Year to date  Local authority    E92000001
#> 7067        2026          Week 2 Year to date  Local authority    E92000001
#> 7068        2026          Week 2 Year to date  Local authority    E92000001
#> 7069        2026          Week 2 Year to date  Local authority    E92000001
#> 7070        2026          Week 2 Year to date  Local authority    E92000001
#> 7071        2026          Week 2 Year to date  Local authority    E92000001
#> 7072        2026          Week 2 Year to date  Local authority    E92000001
#> 7073        2026          Week 2 Year to date  Local authority    E92000001
#> 7074        2026          Week 2 Year to date  Local authority    E92000001
#> 7075        2026          Week 2 Year to date  Local authority    E92000001
#> 7076        2026          Week 2 Year to date  Local authority    E92000001
#> 7077        2026          Week 2 Year to date  Local authority    E92000001
#> 7078        2026          Week 2 Year to date  Local authority    E92000001
#> 7079        2026          Week 2 Year to date  Local authority    E92000001
#> 7080        2026          Week 2 Year to date  Local authority    E92000001
#> 7081        2026          Week 2 Year to date  Local authority    E92000001
#> 7082        2026          Week 2 Year to date  Local authority    E92000001
#> 7083        2026          Week 2 Year to date  Local authority    E92000001
#> 7084        2026          Week 2 Year to date  Local authority    E92000001
#> 7085        2026          Week 2 Year to date  Local authority    E92000001
#> 7086        2026          Week 2 Year to date  Local authority    E92000001
#> 7087        2026          Week 2 Year to date  Local authority    E92000001
#> 7088        2026          Week 2 Year to date  Local authority    E92000001
#> 7089        2026          Week 2 Year to date  Local authority    E92000001
#> 7090        2026          Week 2 Year to date  Local authority    E92000001
#> 7091        2026          Week 2 Year to date  Local authority    E92000001
#> 7092        2026          Week 2 Year to date  Local authority    E92000001
#> 7093        2026          Week 2 Year to date  Local authority    E92000001
#> 7094        2026          Week 2 Year to date  Local authority    E92000001
#> 7095        2026          Week 2 Year to date  Local authority    E92000001
#> 7096        2026          Week 2 Year to date  Local authority    E92000001
#> 7097        2026          Week 2 Year to date  Local authority    E92000001
#> 7098        2026          Week 2 Year to date  Local authority    E92000001
#> 7099        2026          Week 2 Year to date  Local authority    E92000001
#> 7100        2026          Week 2 Year to date  Local authority    E92000001
#> 7101        2026          Week 2 Year to date  Local authority    E92000001
#> 7102        2026          Week 2 Year to date  Local authority    E92000001
#> 7103        2026          Week 2 Year to date  Local authority    E92000001
#> 7104        2026          Week 2 Year to date  Local authority    E92000001
#> 7105        2026          Week 2 Year to date  Local authority    E92000001
#> 7106        2026          Week 2 Year to date  Local authority    E92000001
#> 7107        2026          Week 2 Year to date  Local authority    E92000001
#> 7108        2026          Week 2 Year to date  Local authority    E92000001
#> 7109        2026          Week 2 Year to date  Local authority    E92000001
#> 7110        2026          Week 2 Year to date  Local authority    E92000001
#> 7111        2026          Week 2 Year to date  Local authority    E92000001
#> 7112        2026          Week 2 Year to date  Local authority    E92000001
#> 7113        2026          Week 2 Year to date  Local authority    E92000001
#> 7114        2026          Week 2 Year to date  Local authority    E92000001
#> 7115        2026          Week 2 Year to date  Local authority    E92000001
#> 7116        2026          Week 2 Year to date  Local authority    E92000001
#> 7117        2026          Week 2 Year to date  Local authority    E92000001
#> 7118        2025         Week 30 Year to date         National    E92000001
#> 7119        2025         Week 30 Year to date         National    E92000001
#> 7120        2025         Week 30 Year to date         National    E92000001
#> 7121        2025         Week 30 Year to date         National    E92000001
#> 7122        2025         Week 30 Year to date         Regional    E92000001
#> 7123        2025         Week 30 Year to date         Regional    E92000001
#> 7124        2025         Week 30 Year to date         Regional    E92000001
#> 7125        2025         Week 30 Year to date         Regional    E92000001
#> 7126        2025         Week 30 Year to date  Local authority    E92000001
#> 7127        2025         Week 30 Year to date  Local authority    E92000001
#> 7128        2025         Week 30 Year to date  Local authority    E92000001
#> 7129        2025         Week 30 Year to date  Local authority    E92000001
#> 7130        2025         Week 30 Year to date  Local authority    E92000001
#> 7131        2025         Week 30 Year to date  Local authority    E92000001
#> 7132        2025         Week 30 Year to date  Local authority    E92000001
#> 7133        2025         Week 30 Year to date  Local authority    E92000001
#> 7134        2025         Week 30 Year to date  Local authority    E92000001
#> 7135        2025         Week 30 Year to date  Local authority    E92000001
#> 7136        2025         Week 30 Year to date  Local authority    E92000001
#> 7137        2025         Week 30 Year to date  Local authority    E92000001
#> 7138        2025         Week 30 Year to date  Local authority    E92000001
#> 7139        2025         Week 30 Year to date  Local authority    E92000001
#> 7140        2025         Week 30 Year to date  Local authority    E92000001
#> 7141        2025         Week 30 Year to date  Local authority    E92000001
#> 7142        2025         Week 30 Year to date  Local authority    E92000001
#> 7143        2025         Week 30 Year to date  Local authority    E92000001
#> 7144        2025         Week 30 Year to date  Local authority    E92000001
#> 7145        2025         Week 30 Year to date  Local authority    E92000001
#> 7146        2025         Week 30 Year to date  Local authority    E92000001
#> 7147        2025         Week 30 Year to date  Local authority    E92000001
#> 7148        2025         Week 30 Year to date  Local authority    E92000001
#> 7149        2025         Week 30 Year to date  Local authority    E92000001
#> 7150        2025         Week 30 Year to date  Local authority    E92000001
#> 7151        2025         Week 30 Year to date  Local authority    E92000001
#> 7152        2025         Week 30 Year to date  Local authority    E92000001
#> 7153        2025         Week 30 Year to date  Local authority    E92000001
#> 7154        2025         Week 30 Year to date  Local authority    E92000001
#> 7155        2025         Week 30 Year to date  Local authority    E92000001
#> 7156        2025         Week 30 Year to date  Local authority    E92000001
#> 7157        2025         Week 30 Year to date  Local authority    E92000001
#> 7158        2025         Week 30 Year to date  Local authority    E92000001
#> 7159        2025         Week 30 Year to date  Local authority    E92000001
#> 7160        2025         Week 30 Year to date  Local authority    E92000001
#> 7161        2025         Week 30 Year to date  Local authority    E92000001
#> 7162        2025         Week 30 Year to date         Regional    E92000001
#> 7163        2025         Week 30 Year to date         Regional    E92000001
#> 7164        2025         Week 30 Year to date         Regional    E92000001
#> 7165        2025         Week 30 Year to date         Regional    E92000001
#> 7166        2025         Week 30 Year to date  Local authority    E92000001
#> 7167        2025         Week 30 Year to date  Local authority    E92000001
#> 7168        2025         Week 30 Year to date  Local authority    E92000001
#> 7169        2025         Week 30 Year to date  Local authority    E92000001
#> 7170        2025         Week 30 Year to date  Local authority    E92000001
#> 7171        2025         Week 30 Year to date  Local authority    E92000001
#> 7172        2025         Week 30 Year to date  Local authority    E92000001
#> 7173        2025         Week 30 Year to date  Local authority    E92000001
#> 7174        2025         Week 30 Year to date  Local authority    E92000001
#> 7175        2025         Week 30 Year to date  Local authority    E92000001
#> 7176        2025         Week 30 Year to date  Local authority    E92000001
#> 7177        2025         Week 30 Year to date  Local authority    E92000001
#> 7178        2025         Week 30 Year to date  Local authority    E92000001
#> 7179        2025         Week 30 Year to date  Local authority    E92000001
#> 7180        2025         Week 30 Year to date  Local authority    E92000001
#> 7181        2025         Week 30 Year to date  Local authority    E92000001
#> 7182        2025         Week 30 Year to date  Local authority    E92000001
#> 7183        2025         Week 30 Year to date  Local authority    E92000001
#> 7184        2025         Week 30 Year to date  Local authority    E92000001
#> 7185        2025         Week 30 Year to date  Local authority    E92000001
#> 7186        2025         Week 30 Year to date  Local authority    E92000001
#> 7187        2025         Week 30 Year to date  Local authority    E92000001
#> 7188        2025         Week 30 Year to date  Local authority    E92000001
#> 7189        2025         Week 30 Year to date  Local authority    E92000001
#> 7190        2025         Week 30 Year to date  Local authority    E92000001
#> 7191        2025         Week 30 Year to date  Local authority    E92000001
#> 7192        2025         Week 30 Year to date  Local authority    E92000001
#> 7193        2025         Week 30 Year to date  Local authority    E92000001
#> 7194        2025         Week 30 Year to date  Local authority    E92000001
#> 7195        2025         Week 30 Year to date  Local authority    E92000001
#> 7196        2025         Week 30 Year to date  Local authority    E92000001
#> 7197        2025         Week 30 Year to date  Local authority    E92000001
#> 7198        2025         Week 30 Year to date  Local authority    E92000001
#> 7199        2025         Week 30 Year to date  Local authority    E92000001
#> 7200        2025         Week 30 Year to date  Local authority    E92000001
#> 7201        2025         Week 30 Year to date  Local authority    E92000001
#> 7202        2025         Week 30 Year to date  Local authority    E92000001
#> 7203        2025         Week 30 Year to date  Local authority    E92000001
#> 7204        2025         Week 30 Year to date  Local authority    E92000001
#> 7205        2025         Week 30 Year to date  Local authority    E92000001
#> 7206        2025         Week 30 Year to date  Local authority    E92000001
#> 7207        2025         Week 30 Year to date  Local authority    E92000001
#> 7208        2025         Week 30 Year to date  Local authority    E92000001
#> 7209        2025         Week 30 Year to date  Local authority    E92000001
#> 7210        2025         Week 30 Year to date  Local authority    E92000001
#> 7211        2025         Week 30 Year to date  Local authority    E92000001
#> 7212        2025         Week 30 Year to date  Local authority    E92000001
#> 7213        2025         Week 30 Year to date  Local authority    E92000001
#> 7214        2025         Week 30 Year to date  Local authority    E92000001
#> 7215        2025         Week 30 Year to date  Local authority    E92000001
#> 7216        2025         Week 30 Year to date  Local authority    E92000001
#> 7217        2025         Week 30 Year to date  Local authority    E92000001
#> 7218        2025         Week 30 Year to date  Local authority    E92000001
#> 7219        2025         Week 30 Year to date  Local authority    E92000001
#> 7220        2025         Week 30 Year to date  Local authority    E92000001
#> 7221        2025         Week 30 Year to date  Local authority    E92000001
#> 7222        2025         Week 30 Year to date  Local authority    E92000001
#> 7223        2025         Week 30 Year to date  Local authority    E92000001
#> 7224        2025         Week 30 Year to date  Local authority    E92000001
#> 7225        2025         Week 30 Year to date  Local authority    E92000001
#> 7226        2025         Week 30 Year to date  Local authority    E92000001
#> 7227        2025         Week 30 Year to date  Local authority    E92000001
#> 7228        2025         Week 30 Year to date  Local authority    E92000001
#> 7229        2025         Week 30 Year to date  Local authority    E92000001
#> 7230        2025         Week 30 Year to date  Local authority    E92000001
#> 7231        2025         Week 30 Year to date  Local authority    E92000001
#> 7232        2025         Week 30 Year to date  Local authority    E92000001
#> 7233        2025         Week 30 Year to date  Local authority    E92000001
#> 7234        2025         Week 30 Year to date  Local authority    E92000001
#> 7235        2025         Week 30 Year to date  Local authority    E92000001
#> 7236        2025         Week 30 Year to date  Local authority    E92000001
#> 7237        2025         Week 30 Year to date  Local authority    E92000001
#> 7238        2025         Week 30 Year to date         Regional    E92000001
#> 7239        2025         Week 30 Year to date         Regional    E92000001
#> 7240        2025         Week 30 Year to date         Regional    E92000001
#> 7241        2025         Week 30 Year to date         Regional    E92000001
#> 7242        2025         Week 30 Year to date  Local authority    E92000001
#> 7243        2025         Week 30 Year to date  Local authority    E92000001
#> 7244        2025         Week 30 Year to date  Local authority    E92000001
#> 7245        2025         Week 30 Year to date  Local authority    E92000001
#> 7246        2025         Week 30 Year to date  Local authority    E92000001
#> 7247        2025         Week 30 Year to date  Local authority    E92000001
#> 7248        2025         Week 30 Year to date  Local authority    E92000001
#> 7249        2025         Week 30 Year to date  Local authority    E92000001
#> 7250        2025         Week 30 Year to date  Local authority    E92000001
#> 7251        2025         Week 30 Year to date  Local authority    E92000001
#> 7252        2025         Week 30 Year to date  Local authority    E92000001
#> 7253        2025         Week 30 Year to date  Local authority    E92000001
#> 7254        2025         Week 30 Year to date  Local authority    E92000001
#> 7255        2025         Week 30 Year to date  Local authority    E92000001
#> 7256        2025         Week 30 Year to date  Local authority    E92000001
#> 7257        2025         Week 30 Year to date  Local authority    E92000001
#> 7258        2025         Week 30 Year to date  Local authority    E92000001
#> 7259        2025         Week 30 Year to date  Local authority    E92000001
#> 7260        2025         Week 30 Year to date  Local authority    E92000001
#> 7261        2025         Week 30 Year to date  Local authority    E92000001
#> 7262        2025         Week 30 Year to date  Local authority    E92000001
#> 7263        2025         Week 30 Year to date  Local authority    E92000001
#> 7264        2025         Week 30 Year to date  Local authority    E92000001
#> 7265        2025         Week 30 Year to date  Local authority    E92000001
#> 7266        2025         Week 30 Year to date  Local authority    E92000001
#> 7267        2025         Week 30 Year to date  Local authority    E92000001
#> 7268        2025         Week 30 Year to date  Local authority    E92000001
#> 7269        2025         Week 30 Year to date  Local authority    E92000001
#> 7270        2025         Week 30 Year to date  Local authority    E92000001
#> 7271        2025         Week 30 Year to date  Local authority    E92000001
#> 7272        2025         Week 30 Year to date  Local authority    E92000001
#> 7273        2025         Week 30 Year to date  Local authority    E92000001
#> 7274        2025         Week 30 Year to date  Local authority    E92000001
#> 7275        2025         Week 30 Year to date  Local authority    E92000001
#> 7276        2025         Week 30 Year to date  Local authority    E92000001
#> 7277        2025         Week 30 Year to date  Local authority    E92000001
#> 7278        2025         Week 30 Year to date  Local authority    E92000001
#> 7279        2025         Week 30 Year to date  Local authority    E92000001
#> 7280        2025         Week 30 Year to date  Local authority    E92000001
#> 7281        2025         Week 30 Year to date  Local authority    E92000001
#> 7282        2025         Week 30 Year to date  Local authority    E92000001
#> 7283        2025         Week 30 Year to date  Local authority    E92000001
#> 7284        2025         Week 30 Year to date  Local authority    E92000001
#> 7285        2025         Week 30 Year to date  Local authority    E92000001
#> 7286        2025         Week 30 Year to date  Local authority    E92000001
#> 7287        2025         Week 30 Year to date         Regional    E92000001
#> 7288        2025         Week 30 Year to date         Regional    E92000001
#> 7289        2025         Week 30 Year to date         Regional    E92000001
#> 7290        2025         Week 30 Year to date         Regional    E92000001
#> 7291        2025         Week 30 Year to date  Local authority    E92000001
#> 7292        2025         Week 30 Year to date  Local authority    E92000001
#> 7293        2025         Week 30 Year to date  Local authority    E92000001
#> 7294        2025         Week 30 Year to date  Local authority    E92000001
#> 7295        2025         Week 30 Year to date  Local authority    E92000001
#> 7296        2025         Week 30 Year to date  Local authority    E92000001
#> 7297        2025         Week 30 Year to date  Local authority    E92000001
#> 7298        2025         Week 30 Year to date  Local authority    E92000001
#> 7299        2025         Week 30 Year to date  Local authority    E92000001
#> 7300        2025         Week 30 Year to date  Local authority    E92000001
#> 7301        2025         Week 30 Year to date  Local authority    E92000001
#> 7302        2025         Week 30 Year to date  Local authority    E92000001
#> 7303        2025         Week 30 Year to date  Local authority    E92000001
#> 7304        2025         Week 30 Year to date  Local authority    E92000001
#> 7305        2025         Week 30 Year to date  Local authority    E92000001
#> 7306        2025         Week 30 Year to date  Local authority    E92000001
#> 7307        2025         Week 30 Year to date  Local authority    E92000001
#> 7308        2025         Week 30 Year to date  Local authority    E92000001
#> 7309        2025         Week 30 Year to date  Local authority    E92000001
#> 7310        2025         Week 30 Year to date  Local authority    E92000001
#> 7311        2025         Week 30 Year to date  Local authority    E92000001
#> 7312        2025         Week 30 Year to date  Local authority    E92000001
#> 7313        2025         Week 30 Year to date  Local authority    E92000001
#> 7314        2025         Week 30 Year to date  Local authority    E92000001
#> 7315        2025         Week 30 Year to date  Local authority    E92000001
#> 7316        2025         Week 30 Year to date  Local authority    E92000001
#> 7317        2025         Week 30 Year to date  Local authority    E92000001
#> 7318        2025         Week 30 Year to date  Local authority    E92000001
#> 7319        2025         Week 30 Year to date  Local authority    E92000001
#> 7320        2025         Week 30 Year to date         Regional    E92000001
#> 7321        2025         Week 30 Year to date         Regional    E92000001
#> 7322        2025         Week 30 Year to date         Regional    E92000001
#> 7323        2025         Week 30 Year to date         Regional    E92000001
#> 7324        2025         Week 30 Year to date  Local authority    E92000001
#> 7325        2025         Week 30 Year to date  Local authority    E92000001
#> 7326        2025         Week 30 Year to date  Local authority    E92000001
#> 7327        2025         Week 30 Year to date  Local authority    E92000001
#> 7328        2025         Week 30 Year to date  Local authority    E92000001
#> 7329        2025         Week 30 Year to date  Local authority    E92000001
#> 7330        2025         Week 30 Year to date  Local authority    E92000001
#> 7331        2025         Week 30 Year to date  Local authority    E92000001
#> 7332        2025         Week 30 Year to date  Local authority    E92000001
#> 7333        2025         Week 30 Year to date  Local authority    E92000001
#> 7334        2025         Week 30 Year to date  Local authority    E92000001
#> 7335        2025         Week 30 Year to date  Local authority    E92000001
#> 7336        2025         Week 30 Year to date  Local authority    E92000001
#> 7337        2025         Week 30 Year to date  Local authority    E92000001
#> 7338        2025         Week 30 Year to date  Local authority    E92000001
#> 7339        2025         Week 30 Year to date  Local authority    E92000001
#> 7340        2025         Week 30 Year to date  Local authority    E92000001
#> 7341        2025         Week 30 Year to date  Local authority    E92000001
#> 7342        2025         Week 30 Year to date  Local authority    E92000001
#> 7343        2025         Week 30 Year to date  Local authority    E92000001
#> 7344        2025         Week 30 Year to date  Local authority    E92000001
#> 7345        2025         Week 30 Year to date  Local authority    E92000001
#> 7346        2025         Week 30 Year to date  Local authority    E92000001
#> 7347        2025         Week 30 Year to date  Local authority    E92000001
#> 7348        2025         Week 30 Year to date  Local authority    E92000001
#> 7349        2025         Week 30 Year to date  Local authority    E92000001
#> 7350        2025         Week 30 Year to date  Local authority    E92000001
#> 7351        2025         Week 30 Year to date  Local authority    E92000001
#> 7352        2025         Week 30 Year to date  Local authority    E92000001
#> 7353        2025         Week 30 Year to date  Local authority    E92000001
#> 7354        2025         Week 30 Year to date  Local authority    E92000001
#> 7355        2025         Week 30 Year to date  Local authority    E92000001
#> 7356        2025         Week 30 Year to date  Local authority    E92000001
#> 7357        2025         Week 30 Year to date  Local authority    E92000001
#> 7358        2025         Week 30 Year to date  Local authority    E92000001
#> 7359        2025         Week 30 Year to date  Local authority    E92000001
#> 7360        2025         Week 30 Year to date  Local authority    E92000001
#> 7361        2025         Week 30 Year to date  Local authority    E92000001
#> 7362        2025         Week 30 Year to date  Local authority    E92000001
#> 7363        2025         Week 30 Year to date  Local authority    E92000001
#> 7364        2025         Week 30 Year to date  Local authority    E92000001
#> 7365        2025         Week 30 Year to date  Local authority    E92000001
#> 7366        2025         Week 30 Year to date         Regional    E92000001
#> 7367        2025         Week 30 Year to date         Regional    E92000001
#> 7368        2025         Week 30 Year to date         Regional    E92000001
#> 7369        2025         Week 30 Year to date         Regional    E92000001
#> 7370        2025         Week 30 Year to date  Local authority    E92000001
#> 7371        2025         Week 30 Year to date  Local authority    E92000001
#> 7372        2025         Week 30 Year to date  Local authority    E92000001
#> 7373        2025         Week 30 Year to date  Local authority    E92000001
#> 7374        2025         Week 30 Year to date  Local authority    E92000001
#> 7375        2025         Week 30 Year to date  Local authority    E92000001
#> 7376        2025         Week 30 Year to date  Local authority    E92000001
#> 7377        2025         Week 30 Year to date  Local authority    E92000001
#> 7378        2025         Week 30 Year to date  Local authority    E92000001
#> 7379        2025         Week 30 Year to date  Local authority    E92000001
#> 7380        2025         Week 30 Year to date  Local authority    E92000001
#> 7381        2025         Week 30 Year to date  Local authority    E92000001
#> 7382        2025         Week 30 Year to date  Local authority    E92000001
#> 7383        2025         Week 30 Year to date  Local authority    E92000001
#> 7384        2025         Week 30 Year to date  Local authority    E92000001
#> 7385        2025         Week 30 Year to date  Local authority    E92000001
#> 7386        2025         Week 30 Year to date  Local authority    E92000001
#> 7387        2025         Week 30 Year to date  Local authority    E92000001
#> 7388        2025         Week 30 Year to date  Local authority    E92000001
#> 7389        2025         Week 30 Year to date  Local authority    E92000001
#> 7390        2025         Week 30 Year to date  Local authority    E92000001
#> 7391        2025         Week 30 Year to date  Local authority    E92000001
#> 7392        2025         Week 30 Year to date  Local authority    E92000001
#> 7393        2025         Week 30 Year to date  Local authority    E92000001
#> 7394        2025         Week 30 Year to date  Local authority    E92000001
#> 7395        2025         Week 30 Year to date  Local authority    E92000001
#> 7396        2025         Week 30 Year to date  Local authority    E92000001
#> 7397        2025         Week 30 Year to date  Local authority    E92000001
#> 7398        2025         Week 30 Year to date  Local authority    E92000001
#> 7399        2025         Week 30 Year to date  Local authority    E92000001
#> 7400        2025         Week 30 Year to date  Local authority    E92000001
#> 7401        2025         Week 30 Year to date  Local authority    E92000001
#> 7402        2025         Week 30 Year to date  Local authority    E92000001
#> 7403        2025         Week 30 Year to date         Regional    E92000001
#> 7404        2025         Week 30 Year to date         Regional    E92000001
#> 7405        2025         Week 30 Year to date         Regional    E92000001
#> 7406        2025         Week 30 Year to date         Regional    E92000001
#> 7407        2025         Week 30 Year to date  Local authority    E92000001
#> 7408        2025         Week 30 Year to date  Local authority    E92000001
#> 7409        2025         Week 30 Year to date  Local authority    E92000001
#> 7410        2025         Week 30 Year to date  Local authority    E92000001
#> 7411        2025         Week 30 Year to date  Local authority    E92000001
#> 7412        2025         Week 30 Year to date  Local authority    E92000001
#> 7413        2025         Week 30 Year to date  Local authority    E92000001
#> 7414        2025         Week 30 Year to date  Local authority    E92000001
#> 7415        2025         Week 30 Year to date  Local authority    E92000001
#> 7416        2025         Week 30 Year to date  Local authority    E92000001
#> 7417        2025         Week 30 Year to date  Local authority    E92000001
#> 7418        2025         Week 30 Year to date  Local authority    E92000001
#> 7419        2025         Week 30 Year to date  Local authority    E92000001
#> 7420        2025         Week 30 Year to date  Local authority    E92000001
#> 7421        2025         Week 30 Year to date  Local authority    E92000001
#> 7422        2025         Week 30 Year to date  Local authority    E92000001
#> 7423        2025         Week 30 Year to date  Local authority    E92000001
#> 7424        2025         Week 30 Year to date  Local authority    E92000001
#> 7425        2025         Week 30 Year to date  Local authority    E92000001
#> 7426        2025         Week 30 Year to date  Local authority    E92000001
#> 7427        2025         Week 30 Year to date  Local authority    E92000001
#> 7428        2025         Week 30 Year to date  Local authority    E92000001
#> 7429        2025         Week 30 Year to date  Local authority    E92000001
#> 7430        2025         Week 30 Year to date  Local authority    E92000001
#> 7431        2025         Week 30 Year to date  Local authority    E92000001
#> 7432        2025         Week 30 Year to date  Local authority    E92000001
#> 7433        2025         Week 30 Year to date  Local authority    E92000001
#> 7434        2025         Week 30 Year to date  Local authority    E92000001
#> 7435        2025         Week 30 Year to date  Local authority    E92000001
#> 7436        2025         Week 30 Year to date  Local authority    E92000001
#> 7437        2025         Week 30 Year to date  Local authority    E92000001
#> 7438        2025         Week 30 Year to date  Local authority    E92000001
#> 7439        2025         Week 30 Year to date  Local authority    E92000001
#> 7440        2025         Week 30 Year to date  Local authority    E92000001
#> 7441        2025         Week 30 Year to date  Local authority    E92000001
#> 7442        2025         Week 30 Year to date  Local authority    E92000001
#> 7443        2025         Week 30 Year to date  Local authority    E92000001
#> 7444        2025         Week 30 Year to date  Local authority    E92000001
#> 7445        2025         Week 30 Year to date  Local authority    E92000001
#> 7446        2025         Week 30 Year to date  Local authority    E92000001
#> 7447        2025         Week 30 Year to date  Local authority    E92000001
#> 7448        2025         Week 30 Year to date  Local authority    E92000001
#> 7449        2025         Week 30 Year to date  Local authority    E92000001
#> 7450        2025         Week 30 Year to date  Local authority    E92000001
#> 7451        2025         Week 30 Year to date  Local authority    E92000001
#> 7452        2025         Week 30 Year to date  Local authority    E92000001
#> 7453        2025         Week 30 Year to date  Local authority    E92000001
#> 7454        2025         Week 30 Year to date  Local authority    E92000001
#> 7455        2025         Week 30 Year to date  Local authority    E92000001
#> 7456        2025         Week 30 Year to date  Local authority    E92000001
#> 7457        2025         Week 30 Year to date  Local authority    E92000001
#> 7458        2025         Week 30 Year to date  Local authority    E92000001
#> 7459        2025         Week 30 Year to date  Local authority    E92000001
#> 7460        2025         Week 30 Year to date  Local authority    E92000001
#> 7461        2025         Week 30 Year to date  Local authority    E92000001
#> 7462        2025         Week 30 Year to date  Local authority    E92000001
#> 7463        2025         Week 30 Year to date  Local authority    E92000001
#> 7464        2025         Week 30 Year to date  Local authority    E92000001
#> 7465        2025         Week 30 Year to date  Local authority    E92000001
#> 7466        2025         Week 30 Year to date  Local authority    E92000001
#> 7467        2025         Week 30 Year to date  Local authority    E92000001
#> 7468        2025         Week 30 Year to date  Local authority    E92000001
#> 7469        2025         Week 30 Year to date  Local authority    E92000001
#> 7470        2025         Week 30 Year to date  Local authority    E92000001
#> 7471        2025         Week 30 Year to date  Local authority    E92000001
#> 7472        2025         Week 30 Year to date  Local authority    E92000001
#> 7473        2025         Week 30 Year to date  Local authority    E92000001
#> 7474        2025         Week 30 Year to date  Local authority    E92000001
#> 7475        2025         Week 30 Year to date  Local authority    E92000001
#> 7476        2025         Week 30 Year to date  Local authority    E92000001
#> 7477        2025         Week 30 Year to date  Local authority    E92000001
#> 7478        2025         Week 30 Year to date  Local authority    E92000001
#> 7479        2025         Week 30 Year to date  Local authority    E92000001
#> 7480        2025         Week 30 Year to date  Local authority    E92000001
#> 7481        2025         Week 30 Year to date  Local authority    E92000001
#> 7482        2025         Week 30 Year to date  Local authority    E92000001
#> 7483        2025         Week 30 Year to date  Local authority    E92000001
#> 7484        2025         Week 30 Year to date  Local authority    E92000001
#> 7485        2025         Week 30 Year to date  Local authority    E92000001
#> 7486        2025         Week 30 Year to date  Local authority    E92000001
#> 7487        2025         Week 30 Year to date  Local authority    E92000001
#> 7488        2025         Week 30 Year to date  Local authority    E92000001
#> 7489        2025         Week 30 Year to date  Local authority    E92000001
#> 7490        2025         Week 30 Year to date  Local authority    E92000001
#> 7491        2025         Week 30 Year to date  Local authority    E92000001
#> 7492        2025         Week 30 Year to date  Local authority    E92000001
#> 7493        2025         Week 30 Year to date  Local authority    E92000001
#> 7494        2025         Week 30 Year to date  Local authority    E92000001
#> 7495        2025         Week 30 Year to date  Local authority    E92000001
#> 7496        2025         Week 30 Year to date  Local authority    E92000001
#> 7497        2025         Week 30 Year to date  Local authority    E92000001
#> 7498        2025         Week 30 Year to date  Local authority    E92000001
#> 7499        2025         Week 30 Year to date  Local authority    E92000001
#> 7500        2025         Week 30 Year to date  Local authority    E92000001
#> 7501        2025         Week 30 Year to date  Local authority    E92000001
#> 7502        2025         Week 30 Year to date  Local authority    E92000001
#> 7503        2025         Week 30 Year to date  Local authority    E92000001
#> 7504        2025         Week 30 Year to date         Regional    E92000001
#> 7505        2025         Week 30 Year to date         Regional    E92000001
#> 7506        2025         Week 30 Year to date         Regional    E92000001
#> 7507        2025         Week 30 Year to date         Regional    E92000001
#> 7508        2025         Week 30 Year to date  Local authority    E92000001
#> 7509        2025         Week 30 Year to date  Local authority    E92000001
#> 7510        2025         Week 30 Year to date  Local authority    E92000001
#> 7511        2025         Week 30 Year to date  Local authority    E92000001
#> 7512        2025         Week 30 Year to date  Local authority    E92000001
#> 7513        2025         Week 30 Year to date  Local authority    E92000001
#> 7514        2025         Week 30 Year to date  Local authority    E92000001
#> 7515        2025         Week 30 Year to date  Local authority    E92000001
#> 7516        2025         Week 30 Year to date  Local authority    E92000001
#> 7517        2025         Week 30 Year to date  Local authority    E92000001
#> 7518        2025         Week 30 Year to date  Local authority    E92000001
#> 7519        2025         Week 30 Year to date  Local authority    E92000001
#> 7520        2025         Week 30 Year to date  Local authority    E92000001
#> 7521        2025         Week 30 Year to date  Local authority    E92000001
#> 7522        2025         Week 30 Year to date  Local authority    E92000001
#> 7523        2025         Week 30 Year to date  Local authority    E92000001
#> 7524        2025         Week 30 Year to date  Local authority    E92000001
#> 7525        2025         Week 30 Year to date  Local authority    E92000001
#> 7526        2025         Week 30 Year to date  Local authority    E92000001
#> 7527        2025         Week 30 Year to date  Local authority    E92000001
#> 7528        2025         Week 30 Year to date  Local authority    E92000001
#> 7529        2025         Week 30 Year to date  Local authority    E92000001
#> 7530        2025         Week 30 Year to date  Local authority    E92000001
#> 7531        2025         Week 30 Year to date  Local authority    E92000001
#> 7532        2025         Week 30 Year to date  Local authority    E92000001
#> 7533        2025         Week 30 Year to date  Local authority    E92000001
#> 7534        2025         Week 30 Year to date  Local authority    E92000001
#> 7535        2025         Week 30 Year to date  Local authority    E92000001
#> 7536        2025         Week 30 Year to date  Local authority    E92000001
#> 7537        2025         Week 30 Year to date  Local authority    E92000001
#> 7538        2025         Week 30 Year to date  Local authority    E92000001
#> 7539        2025         Week 30 Year to date  Local authority    E92000001
#> 7540        2025         Week 30 Year to date  Local authority    E92000001
#> 7541        2025         Week 30 Year to date  Local authority    E92000001
#> 7542        2025         Week 30 Year to date  Local authority    E92000001
#> 7543        2025         Week 30 Year to date  Local authority    E92000001
#> 7544        2025         Week 30 Year to date  Local authority    E92000001
#> 7545        2025         Week 30 Year to date  Local authority    E92000001
#> 7546        2025         Week 30 Year to date  Local authority    E92000001
#> 7547        2025         Week 30 Year to date  Local authority    E92000001
#> 7548        2025         Week 30 Year to date  Local authority    E92000001
#> 7549        2025         Week 30 Year to date  Local authority    E92000001
#> 7550        2025         Week 30 Year to date  Local authority    E92000001
#> 7551        2025         Week 30 Year to date  Local authority    E92000001
#> 7552        2025         Week 30 Year to date  Local authority    E92000001
#> 7553        2025         Week 30 Year to date  Local authority    E92000001
#> 7554        2025         Week 30 Year to date  Local authority    E92000001
#> 7555        2025         Week 30 Year to date  Local authority    E92000001
#> 7556        2025         Week 30 Year to date  Local authority    E92000001
#> 7557        2025         Week 30 Year to date  Local authority    E92000001
#> 7558        2025         Week 30 Year to date  Local authority    E92000001
#> 7559        2025         Week 30 Year to date  Local authority    E92000001
#> 7560        2025         Week 30 Year to date  Local authority    E92000001
#> 7561        2025         Week 30 Year to date  Local authority    E92000001
#> 7562        2025         Week 30 Year to date  Local authority    E92000001
#> 7563        2025         Week 30 Year to date  Local authority    E92000001
#> 7564        2025         Week 30 Year to date  Local authority    E92000001
#> 7565        2025         Week 30 Year to date         Regional    E92000001
#> 7566        2025         Week 30 Year to date         Regional    E92000001
#> 7567        2025         Week 30 Year to date         Regional    E92000001
#> 7568        2025         Week 30 Year to date         Regional    E92000001
#> 7569        2025         Week 30 Year to date  Local authority    E92000001
#> 7570        2025         Week 30 Year to date  Local authority    E92000001
#> 7571        2025         Week 30 Year to date  Local authority    E92000001
#> 7572        2025         Week 30 Year to date  Local authority    E92000001
#> 7573        2025         Week 30 Year to date  Local authority    E92000001
#> 7574        2025         Week 30 Year to date  Local authority    E92000001
#> 7575        2025         Week 30 Year to date  Local authority    E92000001
#> 7576        2025         Week 30 Year to date  Local authority    E92000001
#> 7577        2025         Week 30 Year to date  Local authority    E92000001
#> 7578        2025         Week 30 Year to date  Local authority    E92000001
#> 7579        2025         Week 30 Year to date  Local authority    E92000001
#> 7580        2025         Week 30 Year to date  Local authority    E92000001
#> 7581        2025         Week 30 Year to date  Local authority    E92000001
#> 7582        2025         Week 30 Year to date  Local authority    E92000001
#> 7583        2025         Week 30 Year to date  Local authority    E92000001
#> 7584        2025         Week 30 Year to date  Local authority    E92000001
#> 7585        2025         Week 30 Year to date  Local authority    E92000001
#> 7586        2025         Week 30 Year to date  Local authority    E92000001
#> 7587        2025         Week 30 Year to date  Local authority    E92000001
#> 7588        2025         Week 30 Year to date  Local authority    E92000001
#> 7589        2025         Week 30 Year to date  Local authority    E92000001
#> 7590        2025         Week 30 Year to date  Local authority    E92000001
#> 7591        2025         Week 30 Year to date  Local authority    E92000001
#> 7592        2025         Week 30 Year to date  Local authority    E92000001
#> 7593        2025         Week 30 Year to date  Local authority    E92000001
#> 7594        2025         Week 30 Year to date  Local authority    E92000001
#> 7595        2025         Week 30 Year to date  Local authority    E92000001
#> 7596        2025         Week 30 Year to date  Local authority    E92000001
#> 7597        2025         Week 30 Year to date  Local authority    E92000001
#> 7598        2025         Week 30 Year to date  Local authority    E92000001
#> 7599        2025         Week 30 Year to date  Local authority    E92000001
#> 7600        2025         Week 30 Year to date  Local authority    E92000001
#> 7601        2025         Week 30 Year to date  Local authority    E92000001
#> 7602        2025         Week 30 Year to date  Local authority    E92000001
#> 7603        2025         Week 30 Year to date  Local authority    E92000001
#> 7604        2025         Week 30 Year to date  Local authority    E92000001
#> 7605        2025         Week 30 Year to date  Local authority    E92000001
#> 7606        2025         Week 30 Year to date  Local authority    E92000001
#> 7607        2025         Week 30 Year to date  Local authority    E92000001
#> 7608        2025         Week 30 Year to date  Local authority    E92000001
#> 7609        2025         Week 30 Year to date  Local authority    E92000001
#> 7610        2025         Week 30 Year to date  Local authority    E92000001
#> 7611        2025         Week 30 Year to date  Local authority    E92000001
#> 7612        2025         Week 28 Year to date         National    E92000001
#> 7613        2025         Week 28 Year to date         National    E92000001
#> 7614        2025         Week 28 Year to date         National    E92000001
#> 7615        2025         Week 28 Year to date         National    E92000001
#> 7616        2025         Week 28 Year to date         Regional    E92000001
#> 7617        2025         Week 28 Year to date         Regional    E92000001
#> 7618        2025         Week 28 Year to date         Regional    E92000001
#> 7619        2025         Week 28 Year to date         Regional    E92000001
#> 7620        2025         Week 28 Year to date  Local authority    E92000001
#> 7621        2025         Week 28 Year to date  Local authority    E92000001
#> 7622        2025         Week 28 Year to date  Local authority    E92000001
#> 7623        2025         Week 28 Year to date  Local authority    E92000001
#> 7624        2025         Week 28 Year to date  Local authority    E92000001
#> 7625        2025         Week 28 Year to date  Local authority    E92000001
#> 7626        2025         Week 28 Year to date  Local authority    E92000001
#> 7627        2025         Week 28 Year to date  Local authority    E92000001
#> 7628        2025         Week 28 Year to date  Local authority    E92000001
#> 7629        2025         Week 28 Year to date  Local authority    E92000001
#> 7630        2025         Week 28 Year to date  Local authority    E92000001
#> 7631        2025         Week 28 Year to date  Local authority    E92000001
#> 7632        2025         Week 28 Year to date  Local authority    E92000001
#> 7633        2025         Week 28 Year to date  Local authority    E92000001
#> 7634        2025         Week 28 Year to date  Local authority    E92000001
#> 7635        2025         Week 28 Year to date  Local authority    E92000001
#> 7636        2025         Week 28 Year to date  Local authority    E92000001
#> 7637        2025         Week 28 Year to date  Local authority    E92000001
#> 7638        2025         Week 28 Year to date  Local authority    E92000001
#> 7639        2025         Week 28 Year to date  Local authority    E92000001
#> 7640        2025         Week 28 Year to date  Local authority    E92000001
#> 7641        2025         Week 28 Year to date  Local authority    E92000001
#> 7642        2025         Week 28 Year to date  Local authority    E92000001
#> 7643        2025         Week 28 Year to date  Local authority    E92000001
#> 7644        2025         Week 28 Year to date  Local authority    E92000001
#> 7645        2025         Week 28 Year to date  Local authority    E92000001
#> 7646        2025         Week 28 Year to date  Local authority    E92000001
#> 7647        2025         Week 28 Year to date  Local authority    E92000001
#> 7648        2025         Week 28 Year to date  Local authority    E92000001
#> 7649        2025         Week 28 Year to date  Local authority    E92000001
#> 7650        2025         Week 28 Year to date  Local authority    E92000001
#> 7651        2025         Week 28 Year to date  Local authority    E92000001
#> 7652        2025         Week 28 Year to date  Local authority    E92000001
#> 7653        2025         Week 28 Year to date  Local authority    E92000001
#> 7654        2025         Week 28 Year to date  Local authority    E92000001
#> 7655        2025         Week 28 Year to date  Local authority    E92000001
#> 7656        2025         Week 28 Year to date         Regional    E92000001
#> 7657        2025         Week 28 Year to date         Regional    E92000001
#> 7658        2025         Week 28 Year to date         Regional    E92000001
#> 7659        2025         Week 28 Year to date         Regional    E92000001
#> 7660        2025         Week 28 Year to date  Local authority    E92000001
#> 7661        2025         Week 28 Year to date  Local authority    E92000001
#> 7662        2025         Week 28 Year to date  Local authority    E92000001
#> 7663        2025         Week 28 Year to date  Local authority    E92000001
#> 7664        2025         Week 28 Year to date  Local authority    E92000001
#> 7665        2025         Week 28 Year to date  Local authority    E92000001
#> 7666        2025         Week 28 Year to date  Local authority    E92000001
#> 7667        2025         Week 28 Year to date  Local authority    E92000001
#> 7668        2025         Week 28 Year to date  Local authority    E92000001
#> 7669        2025         Week 28 Year to date  Local authority    E92000001
#> 7670        2025         Week 28 Year to date  Local authority    E92000001
#> 7671        2025         Week 28 Year to date  Local authority    E92000001
#> 7672        2025         Week 28 Year to date  Local authority    E92000001
#> 7673        2025         Week 28 Year to date  Local authority    E92000001
#> 7674        2025         Week 28 Year to date  Local authority    E92000001
#> 7675        2025         Week 28 Year to date  Local authority    E92000001
#> 7676        2025         Week 28 Year to date  Local authority    E92000001
#> 7677        2025         Week 28 Year to date  Local authority    E92000001
#> 7678        2025         Week 28 Year to date  Local authority    E92000001
#> 7679        2025         Week 28 Year to date  Local authority    E92000001
#> 7680        2025         Week 28 Year to date  Local authority    E92000001
#> 7681        2025         Week 28 Year to date  Local authority    E92000001
#> 7682        2025         Week 28 Year to date  Local authority    E92000001
#> 7683        2025         Week 28 Year to date  Local authority    E92000001
#> 7684        2025         Week 28 Year to date  Local authority    E92000001
#> 7685        2025         Week 28 Year to date  Local authority    E92000001
#> 7686        2025         Week 28 Year to date  Local authority    E92000001
#> 7687        2025         Week 28 Year to date  Local authority    E92000001
#> 7688        2025         Week 28 Year to date  Local authority    E92000001
#> 7689        2025         Week 28 Year to date  Local authority    E92000001
#> 7690        2025         Week 28 Year to date  Local authority    E92000001
#> 7691        2025         Week 28 Year to date  Local authority    E92000001
#> 7692        2025         Week 28 Year to date  Local authority    E92000001
#>      country_name region_code              region_name new_la_code
#> 1         England        <NA>                     <NA>        <NA>
#> 2         England        <NA>                     <NA>        <NA>
#> 3         England        <NA>                     <NA>        <NA>
#> 4         England        <NA>                     <NA>        <NA>
#> 5         England   E12000001               North East        <NA>
#> 6         England   E12000001               North East        <NA>
#> 7         England   E12000001               North East        <NA>
#> 8         England   E12000001               North East        <NA>
#> 9         England   E12000001               North East   E06000001
#> 10        England   E12000001               North East   E06000001
#> 11        England   E12000001               North East   E06000001
#> 12        England   E12000001               North East   E06000001
#> 13        England   E12000001               North East   E06000002
#> 14        England   E12000001               North East   E06000002
#> 15        England   E12000001               North East   E06000002
#> 16        England   E12000001               North East   E06000002
#> 17        England   E12000001               North East   E06000003
#> 18        England   E12000001               North East   E06000003
#> 19        England   E12000001               North East   E06000003
#> 20        England   E12000001               North East   E06000003
#> 21        England   E12000001               North East   E06000004
#> 22        England   E12000001               North East   E06000004
#> 23        England   E12000001               North East   E06000004
#> 24        England   E12000001               North East   E06000004
#> 25        England   E12000001               North East   E06000005
#> 26        England   E12000001               North East   E06000005
#> 27        England   E12000001               North East   E06000005
#> 28        England   E12000001               North East   E06000005
#> 29        England   E12000001               North East   E06000047
#> 30        England   E12000001               North East   E06000047
#> 31        England   E12000001               North East   E06000047
#> 32        England   E12000001               North East   E06000047
#> 33        England   E12000001               North East   E06000057
#> 34        England   E12000001               North East   E06000057
#> 35        England   E12000001               North East   E06000057
#> 36        England   E12000001               North East   E06000057
#> 37        England   E12000001               North East   E08000021
#> 38        England   E12000001               North East   E08000021
#> 39        England   E12000001               North East   E08000021
#> 40        England   E12000001               North East   E08000021
#> 41        England   E12000001               North East   E08000022
#> 42        England   E12000001               North East   E08000022
#> 43        England   E12000001               North East   E08000022
#> 44        England   E12000001               North East   E08000022
#> 45        England   E12000001               North East   E08000023
#> 46        England   E12000001               North East   E08000023
#> 47        England   E12000001               North East   E08000023
#> 48        England   E12000001               North East   E08000023
#> 49        England   E12000001               North East   E08000024
#> 50        England   E12000001               North East   E08000024
#> 51        England   E12000001               North East   E08000024
#> 52        England   E12000001               North East   E08000024
#> 53        England   E12000001               North East   E08000037
#> 54        England   E12000001               North East   E08000037
#> 55        England   E12000001               North East   E08000037
#> 56        England   E12000001               North East   E08000037
#> 57        England   E12000002               North West        <NA>
#> 58        England   E12000002               North West        <NA>
#> 59        England   E12000002               North West        <NA>
#> 60        England   E12000002               North West        <NA>
#> 61        England   E12000002               North West   E06000006
#> 62        England   E12000002               North West   E06000006
#> 63        England   E12000002               North West   E06000006
#> 64        England   E12000002               North West   E06000006
#> 65        England   E12000002               North West   E06000007
#> 66        England   E12000002               North West   E06000007
#> 67        England   E12000002               North West   E06000007
#> 68        England   E12000002               North West   E06000007
#> 69        England   E12000002               North West   E06000008
#> 70        England   E12000002               North West   E06000008
#> 71        England   E12000002               North West   E06000008
#> 72        England   E12000002               North West   E06000008
#> 73        England   E12000002               North West   E06000009
#> 74        England   E12000002               North West   E06000009
#> 75        England   E12000002               North West   E06000009
#> 76        England   E12000002               North West   E06000009
#> 77        England   E12000002               North West   E06000049
#> 78        England   E12000002               North West   E06000049
#> 79        England   E12000002               North West   E06000049
#> 80        England   E12000002               North West   E06000049
#> 81        England   E12000002               North West   E06000050
#> 82        England   E12000002               North West   E06000050
#> 83        England   E12000002               North West   E06000050
#> 84        England   E12000002               North West   E06000050
#> 85        England   E12000002               North West   E06000063
#> 86        England   E12000002               North West   E06000063
#> 87        England   E12000002               North West   E06000063
#> 88        England   E12000002               North West   E06000063
#> 89        England   E12000002               North West   E06000064
#> 90        England   E12000002               North West   E06000064
#> 91        England   E12000002               North West   E06000064
#> 92        England   E12000002               North West   E06000064
#> 93        England   E12000002               North West   E08000001
#> 94        England   E12000002               North West   E08000001
#> 95        England   E12000002               North West   E08000001
#> 96        England   E12000002               North West   E08000001
#> 97        England   E12000002               North West   E08000002
#> 98        England   E12000002               North West   E08000002
#> 99        England   E12000002               North West   E08000002
#> 100       England   E12000002               North West   E08000002
#> 101       England   E12000002               North West   E08000003
#> 102       England   E12000002               North West   E08000003
#> 103       England   E12000002               North West   E08000003
#> 104       England   E12000002               North West   E08000003
#> 105       England   E12000002               North West   E08000004
#> 106       England   E12000002               North West   E08000004
#> 107       England   E12000002               North West   E08000004
#> 108       England   E12000002               North West   E08000004
#> 109       England   E12000002               North West   E08000005
#> 110       England   E12000002               North West   E08000005
#> 111       England   E12000002               North West   E08000005
#> 112       England   E12000002               North West   E08000005
#> 113       England   E12000002               North West   E08000006
#> 114       England   E12000002               North West   E08000006
#> 115       England   E12000002               North West   E08000006
#> 116       England   E12000002               North West   E08000006
#> 117       England   E12000002               North West   E08000007
#> 118       England   E12000002               North West   E08000007
#> 119       England   E12000002               North West   E08000007
#> 120       England   E12000002               North West   E08000007
#> 121       England   E12000002               North West   E08000008
#> 122       England   E12000002               North West   E08000008
#> 123       England   E12000002               North West   E08000008
#> 124       England   E12000002               North West   E08000008
#> 125       England   E12000002               North West   E08000009
#> 126       England   E12000002               North West   E08000009
#> 127       England   E12000002               North West   E08000009
#> 128       England   E12000002               North West   E08000009
#> 129       England   E12000002               North West   E08000010
#> 130       England   E12000002               North West   E08000010
#> 131       England   E12000002               North West   E08000010
#> 132       England   E12000002               North West   E08000010
#> 133       England   E12000002               North West   E08000011
#> 134       England   E12000002               North West   E08000011
#> 135       England   E12000002               North West   E08000011
#> 136       England   E12000002               North West   E08000011
#> 137       England   E12000002               North West   E08000012
#> 138       England   E12000002               North West   E08000012
#> 139       England   E12000002               North West   E08000012
#> 140       England   E12000002               North West   E08000012
#> 141       England   E12000002               North West   E08000013
#> 142       England   E12000002               North West   E08000013
#> 143       England   E12000002               North West   E08000013
#> 144       England   E12000002               North West   E08000013
#> 145       England   E12000002               North West   E08000014
#> 146       England   E12000002               North West   E08000014
#> 147       England   E12000002               North West   E08000014
#> 148       England   E12000002               North West   E08000014
#> 149       England   E12000002               North West   E08000015
#> 150       England   E12000002               North West   E08000015
#> 151       England   E12000002               North West   E08000015
#> 152       England   E12000002               North West   E08000015
#> 153       England   E12000002               North West   E10000017
#> 154       England   E12000002               North West   E10000017
#> 155       England   E12000002               North West   E10000017
#> 156       England   E12000002               North West   E10000017
#> 157       England   E12000003 Yorkshire and The Humber        <NA>
#> 158       England   E12000003 Yorkshire and The Humber        <NA>
#> 159       England   E12000003 Yorkshire and The Humber        <NA>
#> 160       England   E12000003 Yorkshire and The Humber        <NA>
#> 161       England   E12000003 Yorkshire and The Humber   E06000010
#> 162       England   E12000003 Yorkshire and The Humber   E06000010
#> 163       England   E12000003 Yorkshire and The Humber   E06000010
#> 164       England   E12000003 Yorkshire and The Humber   E06000010
#> 165       England   E12000003 Yorkshire and The Humber   E06000011
#> 166       England   E12000003 Yorkshire and The Humber   E06000011
#> 167       England   E12000003 Yorkshire and The Humber   E06000011
#> 168       England   E12000003 Yorkshire and The Humber   E06000011
#> 169       England   E12000003 Yorkshire and The Humber   E06000012
#> 170       England   E12000003 Yorkshire and The Humber   E06000012
#> 171       England   E12000003 Yorkshire and The Humber   E06000012
#> 172       England   E12000003 Yorkshire and The Humber   E06000012
#> 173       England   E12000003 Yorkshire and The Humber   E06000013
#> 174       England   E12000003 Yorkshire and The Humber   E06000013
#> 175       England   E12000003 Yorkshire and The Humber   E06000013
#> 176       England   E12000003 Yorkshire and The Humber   E06000013
#> 177       England   E12000003 Yorkshire and The Humber   E06000014
#> 178       England   E12000003 Yorkshire and The Humber   E06000014
#> 179       England   E12000003 Yorkshire and The Humber   E06000014
#> 180       England   E12000003 Yorkshire and The Humber   E06000014
#> 181       England   E12000003 Yorkshire and The Humber   E06000065
#> 182       England   E12000003 Yorkshire and The Humber   E06000065
#> 183       England   E12000003 Yorkshire and The Humber   E06000065
#> 184       England   E12000003 Yorkshire and The Humber   E06000065
#> 185       England   E12000003 Yorkshire and The Humber   E08000016
#> 186       England   E12000003 Yorkshire and The Humber   E08000016
#> 187       England   E12000003 Yorkshire and The Humber   E08000016
#> 188       England   E12000003 Yorkshire and The Humber   E08000016
#> 189       England   E12000003 Yorkshire and The Humber   E08000017
#> 190       England   E12000003 Yorkshire and The Humber   E08000017
#> 191       England   E12000003 Yorkshire and The Humber   E08000017
#> 192       England   E12000003 Yorkshire and The Humber   E08000017
#> 193       England   E12000003 Yorkshire and The Humber   E08000018
#> 194       England   E12000003 Yorkshire and The Humber   E08000018
#> 195       England   E12000003 Yorkshire and The Humber   E08000018
#> 196       England   E12000003 Yorkshire and The Humber   E08000018
#> 197       England   E12000003 Yorkshire and The Humber   E08000019
#> 198       England   E12000003 Yorkshire and The Humber   E08000019
#> 199       England   E12000003 Yorkshire and The Humber   E08000019
#> 200       England   E12000003 Yorkshire and The Humber   E08000019
#> 201       England   E12000003 Yorkshire and The Humber   E08000032
#> 202       England   E12000003 Yorkshire and The Humber   E08000032
#> 203       England   E12000003 Yorkshire and The Humber   E08000032
#> 204       England   E12000003 Yorkshire and The Humber   E08000032
#> 205       England   E12000003 Yorkshire and The Humber   E08000033
#> 206       England   E12000003 Yorkshire and The Humber   E08000033
#> 207       England   E12000003 Yorkshire and The Humber   E08000033
#> 208       England   E12000003 Yorkshire and The Humber   E08000033
#> 209       England   E12000003 Yorkshire and The Humber   E08000034
#> 210       England   E12000003 Yorkshire and The Humber   E08000034
#> 211       England   E12000003 Yorkshire and The Humber   E08000034
#> 212       England   E12000003 Yorkshire and The Humber   E08000034
#> 213       England   E12000003 Yorkshire and The Humber   E08000035
#> 214       England   E12000003 Yorkshire and The Humber   E08000035
#> 215       England   E12000003 Yorkshire and The Humber   E08000035
#> 216       England   E12000003 Yorkshire and The Humber   E08000035
#> 217       England   E12000003 Yorkshire and The Humber   E08000036
#> 218       England   E12000003 Yorkshire and The Humber   E08000036
#> 219       England   E12000003 Yorkshire and The Humber   E08000036
#> 220       England   E12000003 Yorkshire and The Humber   E08000036
#> 221       England   E12000004            East Midlands        <NA>
#> 222       England   E12000004            East Midlands        <NA>
#> 223       England   E12000004            East Midlands        <NA>
#> 224       England   E12000004            East Midlands        <NA>
#> 225       England   E12000004            East Midlands   E06000015
#> 226       England   E12000004            East Midlands   E06000015
#> 227       England   E12000004            East Midlands   E06000015
#> 228       England   E12000004            East Midlands   E06000015
#> 229       England   E12000004            East Midlands   E06000016
#> 230       England   E12000004            East Midlands   E06000016
#> 231       England   E12000004            East Midlands   E06000016
#> 232       England   E12000004            East Midlands   E06000016
#> 233       England   E12000004            East Midlands   E06000017
#> 234       England   E12000004            East Midlands   E06000017
#> 235       England   E12000004            East Midlands   E06000017
#> 236       England   E12000004            East Midlands   E06000018
#> 237       England   E12000004            East Midlands   E06000018
#> 238       England   E12000004            East Midlands   E06000018
#> 239       England   E12000004            East Midlands   E06000018
#> 240       England   E12000004            East Midlands   E06000061
#> 241       England   E12000004            East Midlands   E06000061
#> 242       England   E12000004            East Midlands   E06000061
#> 243       England   E12000004            East Midlands   E06000061
#> 244       England   E12000004            East Midlands   E06000062
#> 245       England   E12000004            East Midlands   E06000062
#> 246       England   E12000004            East Midlands   E06000062
#> 247       England   E12000004            East Midlands   E06000062
#> 248       England   E12000004            East Midlands   E10000007
#> 249       England   E12000004            East Midlands   E10000007
#> 250       England   E12000004            East Midlands   E10000007
#> 251       England   E12000004            East Midlands   E10000007
#> 252       England   E12000004            East Midlands   E10000018
#> 253       England   E12000004            East Midlands   E10000018
#> 254       England   E12000004            East Midlands   E10000018
#> 255       England   E12000004            East Midlands   E10000018
#> 256       England   E12000004            East Midlands   E10000019
#> 257       England   E12000004            East Midlands   E10000019
#> 258       England   E12000004            East Midlands   E10000019
#> 259       England   E12000004            East Midlands   E10000019
#> 260       England   E12000004            East Midlands   E10000024
#> 261       England   E12000004            East Midlands   E10000024
#> 262       England   E12000004            East Midlands   E10000024
#> 263       England   E12000004            East Midlands   E10000024
#> 264       England   E12000005            West Midlands        <NA>
#> 265       England   E12000005            West Midlands        <NA>
#> 266       England   E12000005            West Midlands        <NA>
#> 267       England   E12000005            West Midlands        <NA>
#> 268       England   E12000005            West Midlands   E06000019
#> 269       England   E12000005            West Midlands   E06000019
#> 270       England   E12000005            West Midlands   E06000019
#> 271       England   E12000005            West Midlands   E06000019
#> 272       England   E12000005            West Midlands   E06000020
#> 273       England   E12000005            West Midlands   E06000020
#> 274       England   E12000005            West Midlands   E06000020
#> 275       England   E12000005            West Midlands   E06000020
#> 276       England   E12000005            West Midlands   E06000021
#> 277       England   E12000005            West Midlands   E06000021
#> 278       England   E12000005            West Midlands   E06000021
#> 279       England   E12000005            West Midlands   E06000021
#> 280       England   E12000005            West Midlands   E06000051
#> 281       England   E12000005            West Midlands   E06000051
#> 282       England   E12000005            West Midlands   E06000051
#> 283       England   E12000005            West Midlands   E06000051
#> 284       England   E12000005            West Midlands   E08000025
#> 285       England   E12000005            West Midlands   E08000025
#> 286       England   E12000005            West Midlands   E08000025
#> 287       England   E12000005            West Midlands   E08000025
#> 288       England   E12000005            West Midlands   E08000026
#> 289       England   E12000005            West Midlands   E08000026
#> 290       England   E12000005            West Midlands   E08000026
#> 291       England   E12000005            West Midlands   E08000026
#> 292       England   E12000005            West Midlands   E08000027
#> 293       England   E12000005            West Midlands   E08000027
#> 294       England   E12000005            West Midlands   E08000027
#> 295       England   E12000005            West Midlands   E08000027
#> 296       England   E12000005            West Midlands   E08000028
#> 297       England   E12000005            West Midlands   E08000028
#> 298       England   E12000005            West Midlands   E08000028
#> 299       England   E12000005            West Midlands   E08000028
#> 300       England   E12000005            West Midlands   E08000029
#> 301       England   E12000005            West Midlands   E08000029
#> 302       England   E12000005            West Midlands   E08000029
#> 303       England   E12000005            West Midlands   E08000029
#> 304       England   E12000005            West Midlands   E08000030
#> 305       England   E12000005            West Midlands   E08000030
#> 306       England   E12000005            West Midlands   E08000030
#> 307       England   E12000005            West Midlands   E08000030
#> 308       England   E12000005            West Midlands   E08000031
#> 309       England   E12000005            West Midlands   E08000031
#> 310       England   E12000005            West Midlands   E08000031
#> 311       England   E12000005            West Midlands   E08000031
#> 312       England   E12000005            West Midlands   E10000028
#> 313       England   E12000005            West Midlands   E10000028
#> 314       England   E12000005            West Midlands   E10000028
#> 315       England   E12000005            West Midlands   E10000028
#> 316       England   E12000005            West Midlands   E10000031
#> 317       England   E12000005            West Midlands   E10000031
#> 318       England   E12000005            West Midlands   E10000031
#> 319       England   E12000005            West Midlands   E10000031
#> 320       England   E12000005            West Midlands   E10000034
#> 321       England   E12000005            West Midlands   E10000034
#> 322       England   E12000005            West Midlands   E10000034
#> 323       England   E12000005            West Midlands   E10000034
#> 324       England   E12000006          East of England        <NA>
#> 325       England   E12000006          East of England        <NA>
#> 326       England   E12000006          East of England        <NA>
#> 327       England   E12000006          East of England        <NA>
#> 328       England   E12000006          East of England   E06000031
#> 329       England   E12000006          East of England   E06000031
#> 330       England   E12000006          East of England   E06000031
#> 331       England   E12000006          East of England   E06000031
#> 332       England   E12000006          East of England   E06000032
#> 333       England   E12000006          East of England   E06000032
#> 334       England   E12000006          East of England   E06000032
#> 335       England   E12000006          East of England   E06000032
#> 336       England   E12000006          East of England   E06000033
#> 337       England   E12000006          East of England   E06000033
#> 338       England   E12000006          East of England   E06000033
#> 339       England   E12000006          East of England   E06000033
#> 340       England   E12000006          East of England   E06000034
#> 341       England   E12000006          East of England   E06000034
#> 342       England   E12000006          East of England   E06000034
#> 343       England   E12000006          East of England   E06000034
#> 344       England   E12000006          East of England   E06000055
#> 345       England   E12000006          East of England   E06000055
#> 346       England   E12000006          East of England   E06000055
#> 347       England   E12000006          East of England   E06000055
#> 348       England   E12000006          East of England   E06000056
#> 349       England   E12000006          East of England   E06000056
#> 350       England   E12000006          East of England   E06000056
#> 351       England   E12000006          East of England   E06000056
#> 352       England   E12000006          East of England   E10000003
#> 353       England   E12000006          East of England   E10000003
#> 354       England   E12000006          East of England   E10000003
#> 355       England   E12000006          East of England   E10000003
#> 356       England   E12000006          East of England   E10000012
#> 357       England   E12000006          East of England   E10000012
#> 358       England   E12000006          East of England   E10000012
#> 359       England   E12000006          East of England   E10000012
#> 360       England   E12000006          East of England   E10000015
#> 361       England   E12000006          East of England   E10000015
#> 362       England   E12000006          East of England   E10000015
#> 363       England   E12000006          East of England   E10000015
#> 364       England   E12000006          East of England   E10000020
#> 365       England   E12000006          East of England   E10000020
#> 366       England   E12000006          East of England   E10000020
#> 367       England   E12000006          East of England   E10000020
#> 368       England   E12000006          East of England   E10000029
#> 369       England   E12000006          East of England   E10000029
#> 370       England   E12000006          East of England   E10000029
#> 371       England   E12000006          East of England   E10000029
#> 372       England   E12000007                   London        <NA>
#> 373       England   E12000007                   London        <NA>
#> 374       England   E12000007                   London        <NA>
#> 375       England   E12000007                   London        <NA>
#> 376       England   E12000007                   London   E09000001
#> 377       England   E12000007                   London   E09000001
#> 378       England   E12000007                   London   E09000002
#> 379       England   E12000007                   London   E09000002
#> 380       England   E12000007                   London   E09000002
#> 381       England   E12000007                   London   E09000002
#> 382       England   E12000007                   London   E09000003
#> 383       England   E12000007                   London   E09000003
#> 384       England   E12000007                   London   E09000003
#> 385       England   E12000007                   London   E09000003
#> 386       England   E12000007                   London   E09000004
#> 387       England   E12000007                   London   E09000004
#> 388       England   E12000007                   London   E09000004
#> 389       England   E12000007                   London   E09000004
#> 390       England   E12000007                   London   E09000005
#> 391       England   E12000007                   London   E09000005
#> 392       England   E12000007                   London   E09000005
#> 393       England   E12000007                   London   E09000005
#> 394       England   E12000007                   London   E09000006
#> 395       England   E12000007                   London   E09000006
#> 396       England   E12000007                   London   E09000006
#> 397       England   E12000007                   London   E09000006
#> 398       England   E12000007                   London   E09000007
#> 399       England   E12000007                   London   E09000007
#> 400       England   E12000007                   London   E09000007
#> 401       England   E12000007                   London   E09000007
#> 402       England   E12000007                   London   E09000008
#> 403       England   E12000007                   London   E09000008
#> 404       England   E12000007                   London   E09000008
#> 405       England   E12000007                   London   E09000008
#> 406       England   E12000007                   London   E09000009
#> 407       England   E12000007                   London   E09000009
#> 408       England   E12000007                   London   E09000009
#> 409       England   E12000007                   London   E09000009
#> 410       England   E12000007                   London   E09000010
#> 411       England   E12000007                   London   E09000010
#> 412       England   E12000007                   London   E09000010
#> 413       England   E12000007                   London   E09000010
#> 414       England   E12000007                   London   E09000011
#> 415       England   E12000007                   London   E09000011
#> 416       England   E12000007                   London   E09000011
#> 417       England   E12000007                   London   E09000011
#> 418       England   E12000007                   London   E09000012
#> 419       England   E12000007                   London   E09000012
#> 420       England   E12000007                   London   E09000012
#> 421       England   E12000007                   London   E09000012
#> 422       England   E12000007                   London   E09000013
#> 423       England   E12000007                   London   E09000013
#> 424       England   E12000007                   London   E09000013
#> 425       England   E12000007                   London   E09000013
#> 426       England   E12000007                   London   E09000014
#> 427       England   E12000007                   London   E09000014
#> 428       England   E12000007                   London   E09000014
#> 429       England   E12000007                   London   E09000014
#> 430       England   E12000007                   London   E09000015
#> 431       England   E12000007                   London   E09000015
#> 432       England   E12000007                   London   E09000015
#> 433       England   E12000007                   London   E09000015
#> 434       England   E12000007                   London   E09000016
#> 435       England   E12000007                   London   E09000016
#> 436       England   E12000007                   London   E09000016
#> 437       England   E12000007                   London   E09000016
#> 438       England   E12000007                   London   E09000017
#> 439       England   E12000007                   London   E09000017
#> 440       England   E12000007                   London   E09000017
#> 441       England   E12000007                   London   E09000017
#> 442       England   E12000007                   London   E09000018
#> 443       England   E12000007                   London   E09000018
#> 444       England   E12000007                   London   E09000018
#> 445       England   E12000007                   London   E09000018
#> 446       England   E12000007                   London   E09000019
#> 447       England   E12000007                   London   E09000019
#> 448       England   E12000007                   London   E09000019
#> 449       England   E12000007                   London   E09000019
#> 450       England   E12000007                   London   E09000020
#> 451       England   E12000007                   London   E09000020
#> 452       England   E12000007                   London   E09000020
#> 453       England   E12000007                   London   E09000020
#> 454       England   E12000007                   London   E09000021
#> 455       England   E12000007                   London   E09000021
#> 456       England   E12000007                   London   E09000021
#> 457       England   E12000007                   London   E09000021
#> 458       England   E12000007                   London   E09000022
#> 459       England   E12000007                   London   E09000022
#> 460       England   E12000007                   London   E09000022
#> 461       England   E12000007                   London   E09000022
#> 462       England   E12000007                   London   E09000023
#> 463       England   E12000007                   London   E09000023
#> 464       England   E12000007                   London   E09000023
#> 465       England   E12000007                   London   E09000023
#> 466       England   E12000007                   London   E09000024
#> 467       England   E12000007                   London   E09000024
#> 468       England   E12000007                   London   E09000024
#> 469       England   E12000007                   London   E09000024
#> 470       England   E12000007                   London   E09000025
#> 471       England   E12000007                   London   E09000025
#> 472       England   E12000007                   London   E09000025
#> 473       England   E12000007                   London   E09000025
#> 474       England   E12000007                   London   E09000026
#> 475       England   E12000007                   London   E09000026
#> 476       England   E12000007                   London   E09000026
#> 477       England   E12000007                   London   E09000026
#> 478       England   E12000007                   London   E09000027
#> 479       England   E12000007                   London   E09000027
#> 480       England   E12000007                   London   E09000027
#> 481       England   E12000007                   London   E09000027
#> 482       England   E12000007                   London   E09000028
#> 483       England   E12000007                   London   E09000028
#> 484       England   E12000007                   London   E09000028
#> 485       England   E12000007                   London   E09000028
#> 486       England   E12000007                   London   E09000029
#> 487       England   E12000007                   London   E09000029
#> 488       England   E12000007                   London   E09000029
#> 489       England   E12000007                   London   E09000029
#> 490       England   E12000007                   London   E09000030
#> 491       England   E12000007                   London   E09000030
#> 492       England   E12000007                   London   E09000030
#> 493       England   E12000007                   London   E09000030
#> 494       England   E12000007                   London   E09000031
#> 495       England   E12000007                   London   E09000031
#> 496       England   E12000007                   London   E09000031
#> 497       England   E12000007                   London   E09000031
#> 498       England   E12000007                   London   E09000032
#> 499       England   E12000007                   London   E09000032
#> 500       England   E12000007                   London   E09000032
#> 501       England   E12000007                   London   E09000032
#> 502       England   E12000007                   London   E09000033
#> 503       England   E12000007                   London   E09000033
#> 504       England   E12000007                   London   E09000033
#> 505       England   E12000007                   London   E09000033
#> 506       England   E12000008               South East        <NA>
#> 507       England   E12000008               South East        <NA>
#> 508       England   E12000008               South East        <NA>
#> 509       England   E12000008               South East        <NA>
#> 510       England   E12000008               South East   E06000035
#> 511       England   E12000008               South East   E06000035
#> 512       England   E12000008               South East   E06000035
#> 513       England   E12000008               South East   E06000035
#> 514       England   E12000008               South East   E06000036
#> 515       England   E12000008               South East   E06000036
#> 516       England   E12000008               South East   E06000036
#> 517       England   E12000008               South East   E06000036
#> 518       England   E12000008               South East   E06000037
#> 519       England   E12000008               South East   E06000037
#> 520       England   E12000008               South East   E06000037
#> 521       England   E12000008               South East   E06000037
#> 522       England   E12000008               South East   E06000038
#> 523       England   E12000008               South East   E06000038
#> 524       England   E12000008               South East   E06000038
#> 525       England   E12000008               South East   E06000038
#> 526       England   E12000008               South East   E06000039
#> 527       England   E12000008               South East   E06000039
#> 528       England   E12000008               South East   E06000039
#> 529       England   E12000008               South East   E06000039
#> 530       England   E12000008               South East   E06000040
#> 531       England   E12000008               South East   E06000040
#> 532       England   E12000008               South East   E06000040
#> 533       England   E12000008               South East   E06000040
#> 534       England   E12000008               South East   E06000041
#> 535       England   E12000008               South East   E06000041
#> 536       England   E12000008               South East   E06000041
#> 537       England   E12000008               South East   E06000041
#> 538       England   E12000008               South East   E06000042
#> 539       England   E12000008               South East   E06000042
#> 540       England   E12000008               South East   E06000042
#> 541       England   E12000008               South East   E06000042
#> 542       England   E12000008               South East   E06000043
#> 543       England   E12000008               South East   E06000043
#> 544       England   E12000008               South East   E06000043
#> 545       England   E12000008               South East   E06000043
#> 546       England   E12000008               South East   E06000044
#> 547       England   E12000008               South East   E06000044
#> 548       England   E12000008               South East   E06000044
#> 549       England   E12000008               South East   E06000044
#> 550       England   E12000008               South East   E06000045
#> 551       England   E12000008               South East   E06000045
#> 552       England   E12000008               South East   E06000045
#> 553       England   E12000008               South East   E06000045
#> 554       England   E12000008               South East   E06000046
#> 555       England   E12000008               South East   E06000046
#> 556       England   E12000008               South East   E06000046
#> 557       England   E12000008               South East   E06000046
#> 558       England   E12000008               South East   E06000060
#> 559       England   E12000008               South East   E06000060
#> 560       England   E12000008               South East   E06000060
#> 561       England   E12000008               South East   E06000060
#> 562       England   E12000008               South East   E10000011
#> 563       England   E12000008               South East   E10000011
#> 564       England   E12000008               South East   E10000011
#> 565       England   E12000008               South East   E10000011
#> 566       England   E12000008               South East   E10000014
#> 567       England   E12000008               South East   E10000014
#> 568       England   E12000008               South East   E10000014
#> 569       England   E12000008               South East   E10000014
#> 570       England   E12000008               South East   E10000016
#> 571       England   E12000008               South East   E10000016
#> 572       England   E12000008               South East   E10000016
#> 573       England   E12000008               South East   E10000016
#> 574       England   E12000008               South East   E10000025
#> 575       England   E12000008               South East   E10000025
#> 576       England   E12000008               South East   E10000025
#> 577       England   E12000008               South East   E10000025
#> 578       England   E12000008               South East   E10000030
#> 579       England   E12000008               South East   E10000030
#> 580       England   E12000008               South East   E10000030
#> 581       England   E12000008               South East   E10000030
#> 582       England   E12000008               South East   E10000032
#> 583       England   E12000008               South East   E10000032
#> 584       England   E12000008               South East   E10000032
#> 585       England   E12000008               South East   E10000032
#> 586       England   E12000009               South West        <NA>
#> 587       England   E12000009               South West        <NA>
#> 588       England   E12000009               South West        <NA>
#> 589       England   E12000009               South West        <NA>
#> 590       England   E12000009               South West   E06000022
#> 591       England   E12000009               South West   E06000022
#> 592       England   E12000009               South West   E06000022
#> 593       England   E12000009               South West   E06000022
#> 594       England   E12000009               South West   E06000023
#> 595       England   E12000009               South West   E06000023
#> 596       England   E12000009               South West   E06000023
#> 597       England   E12000009               South West   E06000023
#> 598       England   E12000009               South West   E06000024
#> 599       England   E12000009               South West   E06000024
#> 600       England   E12000009               South West   E06000024
#> 601       England   E12000009               South West   E06000024
#> 602       England   E12000009               South West   E06000025
#> 603       England   E12000009               South West   E06000025
#> 604       England   E12000009               South West   E06000025
#> 605       England   E12000009               South West   E06000025
#> 606       England   E12000009               South West   E06000026
#> 607       England   E12000009               South West   E06000026
#> 608       England   E12000009               South West   E06000026
#> 609       England   E12000009               South West   E06000026
#> 610       England   E12000009               South West   E06000027
#> 611       England   E12000009               South West   E06000027
#> 612       England   E12000009               South West   E06000027
#> 613       England   E12000009               South West   E06000027
#> 614       England   E12000009               South West   E06000030
#> 615       England   E12000009               South West   E06000030
#> 616       England   E12000009               South West   E06000030
#> 617       England   E12000009               South West   E06000030
#> 618       England   E12000009               South West   E06000052
#> 619       England   E12000009               South West   E06000052
#> 620       England   E12000009               South West   E06000052
#> 621       England   E12000009               South West   E06000052
#> 622       England   E12000009               South West   E06000053
#> 623       England   E12000009               South West   E06000053
#> 624       England   E12000009               South West   E06000054
#> 625       England   E12000009               South West   E06000054
#> 626       England   E12000009               South West   E06000054
#> 627       England   E12000009               South West   E06000054
#> 628       England   E12000009               South West   E06000058
#> 629       England   E12000009               South West   E06000058
#> 630       England   E12000009               South West   E06000058
#> 631       England   E12000009               South West   E06000058
#> 632       England   E12000009               South West   E06000059
#> 633       England   E12000009               South West   E06000059
#> 634       England   E12000009               South West   E06000059
#> 635       England   E12000009               South West   E06000059
#> 636       England   E12000009               South West   E06000066
#> 637       England   E12000009               South West   E06000066
#> 638       England   E12000009               South West   E06000066
#> 639       England   E12000009               South West   E06000066
#> 640       England   E12000009               South West   E10000008
#> 641       England   E12000009               South West   E10000008
#> 642       England   E12000009               South West   E10000008
#> 643       England   E12000009               South West   E10000008
#> 644       England   E12000009               South West   E10000013
#> 645       England   E12000009               South West   E10000013
#> 646       England   E12000009               South West   E10000013
#> 647       England   E12000009               South West   E10000013
#> 648       England        <NA>                     <NA>        <NA>
#> 649       England        <NA>                     <NA>        <NA>
#> 650       England        <NA>                     <NA>        <NA>
#> 651       England        <NA>                     <NA>        <NA>
#> 652       England   E12000001               North East        <NA>
#> 653       England   E12000001               North East        <NA>
#> 654       England   E12000001               North East        <NA>
#> 655       England   E12000001               North East        <NA>
#> 656       England   E12000001               North East   E06000001
#> 657       England   E12000001               North East   E06000001
#> 658       England   E12000001               North East   E06000001
#> 659       England   E12000001               North East   E06000001
#> 660       England   E12000001               North East   E06000002
#> 661       England   E12000001               North East   E06000002
#> 662       England   E12000001               North East   E06000002
#> 663       England   E12000001               North East   E06000002
#> 664       England   E12000001               North East   E06000003
#> 665       England   E12000001               North East   E06000003
#> 666       England   E12000001               North East   E06000003
#> 667       England   E12000001               North East   E06000003
#> 668       England   E12000001               North East   E06000004
#> 669       England   E12000001               North East   E06000004
#> 670       England   E12000001               North East   E06000004
#> 671       England   E12000001               North East   E06000004
#> 672       England   E12000001               North East   E06000005
#> 673       England   E12000001               North East   E06000005
#> 674       England   E12000001               North East   E06000005
#> 675       England   E12000001               North East   E06000005
#> 676       England   E12000001               North East   E06000047
#> 677       England   E12000001               North East   E06000047
#> 678       England   E12000001               North East   E06000047
#> 679       England   E12000001               North East   E06000047
#> 680       England   E12000001               North East   E06000057
#> 681       England   E12000001               North East   E06000057
#> 682       England   E12000001               North East   E06000057
#> 683       England   E12000001               North East   E06000057
#> 684       England   E12000001               North East   E08000021
#> 685       England   E12000001               North East   E08000021
#> 686       England   E12000001               North East   E08000021
#> 687       England   E12000001               North East   E08000021
#> 688       England   E12000001               North East   E08000022
#> 689       England   E12000001               North East   E08000022
#> 690       England   E12000001               North East   E08000022
#> 691       England   E12000001               North East   E08000022
#> 692       England   E12000001               North East   E08000023
#> 693       England   E12000001               North East   E08000023
#> 694       England   E12000001               North East   E08000023
#> 695       England   E12000001               North East   E08000023
#> 696       England   E12000001               North East   E08000024
#> 697       England   E12000001               North East   E08000024
#> 698       England   E12000001               North East   E08000024
#> 699       England   E12000001               North East   E08000024
#> 700       England   E12000001               North East   E08000037
#> 701       England   E12000001               North East   E08000037
#> 702       England   E12000001               North East   E08000037
#> 703       England   E12000001               North East   E08000037
#> 704       England   E12000002               North West        <NA>
#> 705       England   E12000002               North West        <NA>
#> 706       England   E12000002               North West        <NA>
#> 707       England   E12000002               North West        <NA>
#> 708       England   E12000002               North West   E06000006
#> 709       England   E12000002               North West   E06000006
#> 710       England   E12000002               North West   E06000006
#> 711       England   E12000002               North West   E06000006
#> 712       England   E12000002               North West   E06000007
#> 713       England   E12000002               North West   E06000007
#> 714       England   E12000002               North West   E06000007
#> 715       England   E12000002               North West   E06000007
#> 716       England   E12000002               North West   E06000008
#> 717       England   E12000002               North West   E06000008
#> 718       England   E12000002               North West   E06000008
#> 719       England   E12000002               North West   E06000008
#> 720       England   E12000002               North West   E06000009
#> 721       England   E12000002               North West   E06000009
#> 722       England   E12000002               North West   E06000009
#> 723       England   E12000002               North West   E06000009
#> 724       England   E12000002               North West   E06000049
#> 725       England   E12000002               North West   E06000049
#> 726       England   E12000002               North West   E06000049
#> 727       England   E12000002               North West   E06000049
#> 728       England   E12000002               North West   E06000050
#> 729       England   E12000002               North West   E06000050
#> 730       England   E12000002               North West   E06000050
#> 731       England   E12000002               North West   E06000050
#> 732       England   E12000002               North West   E06000063
#> 733       England   E12000002               North West   E06000063
#> 734       England   E12000002               North West   E06000063
#> 735       England   E12000002               North West   E06000063
#> 736       England   E12000002               North West   E06000064
#> 737       England   E12000002               North West   E06000064
#> 738       England   E12000002               North West   E06000064
#> 739       England   E12000002               North West   E06000064
#> 740       England   E12000002               North West   E08000001
#> 741       England   E12000002               North West   E08000001
#> 742       England   E12000002               North West   E08000001
#> 743       England   E12000002               North West   E08000001
#> 744       England   E12000002               North West   E08000002
#> 745       England   E12000002               North West   E08000002
#> 746       England   E12000002               North West   E08000002
#> 747       England   E12000002               North West   E08000002
#> 748       England   E12000002               North West   E08000003
#> 749       England   E12000002               North West   E08000003
#> 750       England   E12000002               North West   E08000003
#> 751       England   E12000002               North West   E08000003
#> 752       England   E12000002               North West   E08000004
#> 753       England   E12000002               North West   E08000004
#> 754       England   E12000002               North West   E08000004
#> 755       England   E12000002               North West   E08000004
#> 756       England   E12000002               North West   E08000005
#> 757       England   E12000002               North West   E08000005
#> 758       England   E12000002               North West   E08000005
#> 759       England   E12000002               North West   E08000005
#> 760       England   E12000002               North West   E08000006
#> 761       England   E12000002               North West   E08000006
#> 762       England   E12000002               North West   E08000006
#> 763       England   E12000002               North West   E08000006
#> 764       England   E12000002               North West   E08000007
#> 765       England   E12000002               North West   E08000007
#> 766       England   E12000002               North West   E08000007
#> 767       England   E12000002               North West   E08000007
#> 768       England   E12000002               North West   E08000008
#> 769       England   E12000002               North West   E08000008
#> 770       England   E12000002               North West   E08000008
#> 771       England   E12000002               North West   E08000008
#> 772       England   E12000002               North West   E08000009
#> 773       England   E12000002               North West   E08000009
#> 774       England   E12000002               North West   E08000009
#> 775       England   E12000002               North West   E08000009
#> 776       England   E12000002               North West   E08000010
#> 777       England   E12000002               North West   E08000010
#> 778       England   E12000002               North West   E08000010
#> 779       England   E12000002               North West   E08000010
#> 780       England   E12000002               North West   E08000011
#> 781       England   E12000002               North West   E08000011
#> 782       England   E12000002               North West   E08000011
#> 783       England   E12000002               North West   E08000011
#> 784       England   E12000002               North West   E08000012
#> 785       England   E12000002               North West   E08000012
#> 786       England   E12000002               North West   E08000012
#> 787       England   E12000002               North West   E08000012
#> 788       England   E12000002               North West   E08000013
#> 789       England   E12000002               North West   E08000013
#> 790       England   E12000002               North West   E08000013
#> 791       England   E12000002               North West   E08000013
#> 792       England   E12000002               North West   E08000014
#> 793       England   E12000002               North West   E08000014
#> 794       England   E12000002               North West   E08000014
#> 795       England   E12000002               North West   E08000014
#> 796       England   E12000002               North West   E08000015
#> 797       England   E12000002               North West   E08000015
#> 798       England   E12000002               North West   E08000015
#> 799       England   E12000002               North West   E08000015
#> 800       England   E12000002               North West   E10000017
#> 801       England   E12000002               North West   E10000017
#> 802       England   E12000002               North West   E10000017
#> 803       England   E12000002               North West   E10000017
#> 804       England   E12000003 Yorkshire and The Humber        <NA>
#> 805       England   E12000003 Yorkshire and The Humber        <NA>
#> 806       England   E12000003 Yorkshire and The Humber        <NA>
#> 807       England   E12000003 Yorkshire and The Humber        <NA>
#> 808       England   E12000003 Yorkshire and The Humber   E06000010
#> 809       England   E12000003 Yorkshire and The Humber   E06000010
#> 810       England   E12000003 Yorkshire and The Humber   E06000010
#> 811       England   E12000003 Yorkshire and The Humber   E06000010
#> 812       England   E12000003 Yorkshire and The Humber   E06000011
#> 813       England   E12000003 Yorkshire and The Humber   E06000011
#> 814       England   E12000003 Yorkshire and The Humber   E06000011
#> 815       England   E12000003 Yorkshire and The Humber   E06000011
#> 816       England   E12000003 Yorkshire and The Humber   E06000012
#> 817       England   E12000003 Yorkshire and The Humber   E06000012
#> 818       England   E12000003 Yorkshire and The Humber   E06000012
#> 819       England   E12000003 Yorkshire and The Humber   E06000012
#> 820       England   E12000003 Yorkshire and The Humber   E06000013
#> 821       England   E12000003 Yorkshire and The Humber   E06000013
#> 822       England   E12000003 Yorkshire and The Humber   E06000013
#> 823       England   E12000003 Yorkshire and The Humber   E06000013
#> 824       England   E12000003 Yorkshire and The Humber   E06000014
#> 825       England   E12000003 Yorkshire and The Humber   E06000014
#> 826       England   E12000003 Yorkshire and The Humber   E06000014
#> 827       England   E12000003 Yorkshire and The Humber   E06000014
#> 828       England   E12000003 Yorkshire and The Humber   E06000065
#> 829       England   E12000003 Yorkshire and The Humber   E06000065
#> 830       England   E12000003 Yorkshire and The Humber   E06000065
#> 831       England   E12000003 Yorkshire and The Humber   E06000065
#> 832       England   E12000003 Yorkshire and The Humber   E08000016
#> 833       England   E12000003 Yorkshire and The Humber   E08000016
#> 834       England   E12000003 Yorkshire and The Humber   E08000016
#> 835       England   E12000003 Yorkshire and The Humber   E08000016
#> 836       England   E12000003 Yorkshire and The Humber   E08000017
#> 837       England   E12000003 Yorkshire and The Humber   E08000017
#> 838       England   E12000003 Yorkshire and The Humber   E08000017
#> 839       England   E12000003 Yorkshire and The Humber   E08000017
#> 840       England   E12000003 Yorkshire and The Humber   E08000018
#> 841       England   E12000003 Yorkshire and The Humber   E08000018
#> 842       England   E12000003 Yorkshire and The Humber   E08000018
#> 843       England   E12000003 Yorkshire and The Humber   E08000018
#> 844       England   E12000003 Yorkshire and The Humber   E08000019
#> 845       England   E12000003 Yorkshire and The Humber   E08000019
#> 846       England   E12000003 Yorkshire and The Humber   E08000019
#> 847       England   E12000003 Yorkshire and The Humber   E08000019
#> 848       England   E12000003 Yorkshire and The Humber   E08000032
#> 849       England   E12000003 Yorkshire and The Humber   E08000032
#> 850       England   E12000003 Yorkshire and The Humber   E08000032
#> 851       England   E12000003 Yorkshire and The Humber   E08000032
#> 852       England   E12000003 Yorkshire and The Humber   E08000033
#> 853       England   E12000003 Yorkshire and The Humber   E08000033
#> 854       England   E12000003 Yorkshire and The Humber   E08000033
#> 855       England   E12000003 Yorkshire and The Humber   E08000033
#> 856       England   E12000003 Yorkshire and The Humber   E08000034
#> 857       England   E12000003 Yorkshire and The Humber   E08000034
#> 858       England   E12000003 Yorkshire and The Humber   E08000034
#> 859       England   E12000003 Yorkshire and The Humber   E08000034
#> 860       England   E12000003 Yorkshire and The Humber   E08000035
#> 861       England   E12000003 Yorkshire and The Humber   E08000035
#> 862       England   E12000003 Yorkshire and The Humber   E08000035
#> 863       England   E12000003 Yorkshire and The Humber   E08000035
#> 864       England   E12000003 Yorkshire and The Humber   E08000036
#> 865       England   E12000003 Yorkshire and The Humber   E08000036
#> 866       England   E12000003 Yorkshire and The Humber   E08000036
#> 867       England   E12000003 Yorkshire and The Humber   E08000036
#> 868       England   E12000004            East Midlands        <NA>
#> 869       England   E12000004            East Midlands        <NA>
#> 870       England   E12000004            East Midlands        <NA>
#> 871       England   E12000004            East Midlands        <NA>
#> 872       England   E12000004            East Midlands   E06000015
#> 873       England   E12000004            East Midlands   E06000015
#> 874       England   E12000004            East Midlands   E06000015
#> 875       England   E12000004            East Midlands   E06000015
#> 876       England   E12000004            East Midlands   E06000016
#> 877       England   E12000004            East Midlands   E06000016
#> 878       England   E12000004            East Midlands   E06000016
#> 879       England   E12000004            East Midlands   E06000016
#> 880       England   E12000004            East Midlands   E06000017
#> 881       England   E12000004            East Midlands   E06000017
#> 882       England   E12000004            East Midlands   E06000017
#> 883       England   E12000004            East Midlands   E06000018
#> 884       England   E12000004            East Midlands   E06000018
#> 885       England   E12000004            East Midlands   E06000018
#> 886       England   E12000004            East Midlands   E06000018
#> 887       England   E12000004            East Midlands   E06000061
#> 888       England   E12000004            East Midlands   E06000061
#> 889       England   E12000004            East Midlands   E06000061
#> 890       England   E12000004            East Midlands   E06000061
#> 891       England   E12000004            East Midlands   E06000062
#> 892       England   E12000004            East Midlands   E06000062
#> 893       England   E12000004            East Midlands   E06000062
#> 894       England   E12000004            East Midlands   E06000062
#> 895       England   E12000004            East Midlands   E10000007
#> 896       England   E12000004            East Midlands   E10000007
#> 897       England   E12000004            East Midlands   E10000007
#> 898       England   E12000004            East Midlands   E10000007
#> 899       England   E12000004            East Midlands   E10000018
#> 900       England   E12000004            East Midlands   E10000018
#> 901       England   E12000004            East Midlands   E10000018
#> 902       England   E12000004            East Midlands   E10000018
#> 903       England   E12000004            East Midlands   E10000019
#> 904       England   E12000004            East Midlands   E10000019
#> 905       England   E12000004            East Midlands   E10000019
#> 906       England   E12000004            East Midlands   E10000019
#> 907       England   E12000004            East Midlands   E10000024
#> 908       England   E12000004            East Midlands   E10000024
#> 909       England   E12000004            East Midlands   E10000024
#> 910       England   E12000004            East Midlands   E10000024
#> 911       England   E12000005            West Midlands        <NA>
#> 912       England   E12000005            West Midlands        <NA>
#> 913       England   E12000005            West Midlands        <NA>
#> 914       England   E12000005            West Midlands        <NA>
#> 915       England   E12000005            West Midlands   E06000019
#> 916       England   E12000005            West Midlands   E06000019
#> 917       England   E12000005            West Midlands   E06000019
#> 918       England   E12000005            West Midlands   E06000019
#> 919       England   E12000005            West Midlands   E06000020
#> 920       England   E12000005            West Midlands   E06000020
#> 921       England   E12000005            West Midlands   E06000020
#> 922       England   E12000005            West Midlands   E06000020
#> 923       England   E12000005            West Midlands   E06000021
#> 924       England   E12000005            West Midlands   E06000021
#> 925       England   E12000005            West Midlands   E06000021
#> 926       England   E12000005            West Midlands   E06000021
#> 927       England   E12000005            West Midlands   E06000051
#> 928       England   E12000005            West Midlands   E06000051
#> 929       England   E12000005            West Midlands   E06000051
#> 930       England   E12000005            West Midlands   E06000051
#> 931       England   E12000005            West Midlands   E08000025
#> 932       England   E12000005            West Midlands   E08000025
#> 933       England   E12000005            West Midlands   E08000025
#> 934       England   E12000005            West Midlands   E08000025
#> 935       England   E12000005            West Midlands   E08000026
#> 936       England   E12000005            West Midlands   E08000026
#> 937       England   E12000005            West Midlands   E08000026
#> 938       England   E12000005            West Midlands   E08000026
#> 939       England   E12000005            West Midlands   E08000027
#> 940       England   E12000005            West Midlands   E08000027
#> 941       England   E12000005            West Midlands   E08000027
#> 942       England   E12000005            West Midlands   E08000027
#> 943       England   E12000005            West Midlands   E08000028
#> 944       England   E12000005            West Midlands   E08000028
#> 945       England   E12000005            West Midlands   E08000028
#> 946       England   E12000005            West Midlands   E08000028
#> 947       England   E12000005            West Midlands   E08000029
#> 948       England   E12000005            West Midlands   E08000029
#> 949       England   E12000005            West Midlands   E08000029
#> 950       England   E12000005            West Midlands   E08000029
#> 951       England   E12000005            West Midlands   E08000030
#> 952       England   E12000005            West Midlands   E08000030
#> 953       England   E12000005            West Midlands   E08000030
#> 954       England   E12000005            West Midlands   E08000030
#> 955       England   E12000005            West Midlands   E08000031
#> 956       England   E12000005            West Midlands   E08000031
#> 957       England   E12000005            West Midlands   E08000031
#> 958       England   E12000005            West Midlands   E08000031
#> 959       England   E12000005            West Midlands   E10000028
#> 960       England   E12000005            West Midlands   E10000028
#> 961       England   E12000005            West Midlands   E10000028
#> 962       England   E12000005            West Midlands   E10000028
#> 963       England   E12000005            West Midlands   E10000031
#> 964       England   E12000005            West Midlands   E10000031
#> 965       England   E12000005            West Midlands   E10000031
#> 966       England   E12000005            West Midlands   E10000031
#> 967       England   E12000005            West Midlands   E10000034
#> 968       England   E12000005            West Midlands   E10000034
#> 969       England   E12000005            West Midlands   E10000034
#> 970       England   E12000005            West Midlands   E10000034
#> 971       England   E12000006          East of England        <NA>
#> 972       England   E12000006          East of England        <NA>
#> 973       England   E12000006          East of England        <NA>
#> 974       England   E12000006          East of England        <NA>
#> 975       England   E12000006          East of England   E06000031
#> 976       England   E12000006          East of England   E06000031
#> 977       England   E12000006          East of England   E06000031
#> 978       England   E12000006          East of England   E06000031
#> 979       England   E12000006          East of England   E06000032
#> 980       England   E12000006          East of England   E06000032
#> 981       England   E12000006          East of England   E06000032
#> 982       England   E12000006          East of England   E06000032
#> 983       England   E12000006          East of England   E06000033
#> 984       England   E12000006          East of England   E06000033
#> 985       England   E12000006          East of England   E06000033
#> 986       England   E12000006          East of England   E06000033
#> 987       England   E12000006          East of England   E06000034
#> 988       England   E12000006          East of England   E06000034
#> 989       England   E12000006          East of England   E06000034
#> 990       England   E12000006          East of England   E06000034
#> 991       England   E12000006          East of England   E06000055
#> 992       England   E12000006          East of England   E06000055
#> 993       England   E12000006          East of England   E06000055
#> 994       England   E12000006          East of England   E06000055
#> 995       England   E12000006          East of England   E06000056
#> 996       England   E12000006          East of England   E06000056
#> 997       England   E12000006          East of England   E06000056
#> 998       England   E12000006          East of England   E06000056
#> 999       England   E12000006          East of England   E10000003
#> 1000      England   E12000006          East of England   E10000003
#> 1001      England   E12000006          East of England   E10000003
#> 1002      England   E12000006          East of England   E10000003
#> 1003      England   E12000006          East of England   E10000012
#> 1004      England   E12000006          East of England   E10000012
#> 1005      England   E12000006          East of England   E10000012
#> 1006      England   E12000006          East of England   E10000012
#> 1007      England   E12000006          East of England   E10000015
#> 1008      England   E12000006          East of England   E10000015
#> 1009      England   E12000006          East of England   E10000015
#> 1010      England   E12000006          East of England   E10000015
#> 1011      England   E12000006          East of England   E10000020
#> 1012      England   E12000006          East of England   E10000020
#> 1013      England   E12000006          East of England   E10000020
#> 1014      England   E12000006          East of England   E10000020
#> 1015      England   E12000006          East of England   E10000029
#> 1016      England   E12000006          East of England   E10000029
#> 1017      England   E12000006          East of England   E10000029
#> 1018      England   E12000006          East of England   E10000029
#> 1019      England   E12000007                   London        <NA>
#> 1020      England   E12000007                   London        <NA>
#> 1021      England   E12000007                   London        <NA>
#> 1022      England   E12000007                   London        <NA>
#> 1023      England   E12000007                   London   E09000001
#> 1024      England   E12000007                   London   E09000001
#> 1025      England   E12000007                   London   E09000002
#> 1026      England   E12000007                   London   E09000002
#> 1027      England   E12000007                   London   E09000002
#> 1028      England   E12000007                   London   E09000002
#> 1029      England   E12000007                   London   E09000003
#> 1030      England   E12000007                   London   E09000003
#> 1031      England   E12000007                   London   E09000003
#> 1032      England   E12000007                   London   E09000003
#> 1033      England   E12000007                   London   E09000004
#> 1034      England   E12000007                   London   E09000004
#> 1035      England   E12000007                   London   E09000004
#> 1036      England   E12000007                   London   E09000004
#> 1037      England   E12000007                   London   E09000005
#> 1038      England   E12000007                   London   E09000005
#> 1039      England   E12000007                   London   E09000005
#> 1040      England   E12000007                   London   E09000005
#> 1041      England   E12000007                   London   E09000006
#> 1042      England   E12000007                   London   E09000006
#> 1043      England   E12000007                   London   E09000006
#> 1044      England   E12000007                   London   E09000006
#> 1045      England   E12000007                   London   E09000007
#> 1046      England   E12000007                   London   E09000007
#> 1047      England   E12000007                   London   E09000007
#> 1048      England   E12000007                   London   E09000007
#> 1049      England   E12000007                   London   E09000008
#> 1050      England   E12000007                   London   E09000008
#> 1051      England   E12000007                   London   E09000008
#> 1052      England   E12000007                   London   E09000008
#> 1053      England   E12000007                   London   E09000009
#> 1054      England   E12000007                   London   E09000009
#> 1055      England   E12000007                   London   E09000009
#> 1056      England   E12000007                   London   E09000009
#> 1057      England   E12000007                   London   E09000010
#> 1058      England   E12000007                   London   E09000010
#> 1059      England   E12000007                   London   E09000010
#> 1060      England   E12000007                   London   E09000010
#> 1061      England   E12000007                   London   E09000011
#> 1062      England   E12000007                   London   E09000011
#> 1063      England   E12000007                   London   E09000011
#> 1064      England   E12000007                   London   E09000011
#> 1065      England   E12000007                   London   E09000012
#> 1066      England   E12000007                   London   E09000012
#> 1067      England   E12000007                   London   E09000012
#> 1068      England   E12000007                   London   E09000012
#> 1069      England   E12000007                   London   E09000013
#> 1070      England   E12000007                   London   E09000013
#> 1071      England   E12000007                   London   E09000013
#> 1072      England   E12000007                   London   E09000013
#> 1073      England   E12000007                   London   E09000014
#> 1074      England   E12000007                   London   E09000014
#> 1075      England   E12000007                   London   E09000014
#> 1076      England   E12000007                   London   E09000014
#> 1077      England   E12000007                   London   E09000015
#> 1078      England   E12000007                   London   E09000015
#> 1079      England   E12000007                   London   E09000015
#> 1080      England   E12000007                   London   E09000015
#> 1081      England   E12000007                   London   E09000016
#> 1082      England   E12000007                   London   E09000016
#> 1083      England   E12000007                   London   E09000016
#> 1084      England   E12000007                   London   E09000016
#> 1085      England   E12000007                   London   E09000017
#> 1086      England   E12000007                   London   E09000017
#> 1087      England   E12000007                   London   E09000017
#> 1088      England   E12000007                   London   E09000017
#> 1089      England   E12000007                   London   E09000018
#> 1090      England   E12000007                   London   E09000018
#> 1091      England   E12000007                   London   E09000018
#> 1092      England   E12000007                   London   E09000018
#> 1093      England   E12000007                   London   E09000019
#> 1094      England   E12000007                   London   E09000019
#> 1095      England   E12000007                   London   E09000019
#> 1096      England   E12000007                   London   E09000019
#> 1097      England   E12000007                   London   E09000020
#> 1098      England   E12000007                   London   E09000020
#> 1099      England   E12000007                   London   E09000020
#> 1100      England   E12000007                   London   E09000020
#> 1101      England   E12000007                   London   E09000021
#> 1102      England   E12000007                   London   E09000021
#> 1103      England   E12000007                   London   E09000021
#> 1104      England   E12000007                   London   E09000021
#> 1105      England   E12000007                   London   E09000022
#> 1106      England   E12000007                   London   E09000022
#> 1107      England   E12000007                   London   E09000022
#> 1108      England   E12000007                   London   E09000022
#> 1109      England   E12000007                   London   E09000023
#> 1110      England   E12000007                   London   E09000023
#> 1111      England   E12000007                   London   E09000023
#> 1112      England   E12000007                   London   E09000023
#> 1113      England   E12000007                   London   E09000024
#> 1114      England   E12000007                   London   E09000024
#> 1115      England   E12000007                   London   E09000024
#> 1116      England   E12000007                   London   E09000024
#> 1117      England   E12000007                   London   E09000025
#> 1118      England   E12000007                   London   E09000025
#> 1119      England   E12000007                   London   E09000025
#> 1120      England   E12000007                   London   E09000025
#> 1121      England   E12000007                   London   E09000026
#> 1122      England   E12000007                   London   E09000026
#> 1123      England   E12000007                   London   E09000026
#> 1124      England   E12000007                   London   E09000026
#> 1125      England   E12000007                   London   E09000027
#> 1126      England   E12000007                   London   E09000027
#> 1127      England   E12000007                   London   E09000027
#> 1128      England   E12000007                   London   E09000027
#> 1129      England   E12000007                   London   E09000028
#> 1130      England   E12000007                   London   E09000028
#> 1131      England   E12000007                   London   E09000028
#> 1132      England   E12000007                   London   E09000028
#> 1133      England   E12000007                   London   E09000029
#> 1134      England   E12000007                   London   E09000029
#> 1135      England   E12000007                   London   E09000029
#> 1136      England   E12000007                   London   E09000029
#> 1137      England   E12000007                   London   E09000030
#> 1138      England   E12000007                   London   E09000030
#> 1139      England   E12000007                   London   E09000030
#> 1140      England   E12000007                   London   E09000030
#> 1141      England   E12000007                   London   E09000031
#> 1142      England   E12000007                   London   E09000031
#> 1143      England   E12000007                   London   E09000031
#> 1144      England   E12000007                   London   E09000031
#> 1145      England   E12000007                   London   E09000032
#> 1146      England   E12000007                   London   E09000032
#> 1147      England   E12000007                   London   E09000032
#> 1148      England   E12000007                   London   E09000032
#> 1149      England   E12000007                   London   E09000033
#> 1150      England   E12000007                   London   E09000033
#> 1151      England   E12000007                   London   E09000033
#> 1152      England   E12000007                   London   E09000033
#> 1153      England   E12000008               South East        <NA>
#> 1154      England   E12000008               South East        <NA>
#> 1155      England   E12000008               South East        <NA>
#> 1156      England   E12000008               South East        <NA>
#> 1157      England   E12000008               South East   E06000035
#> 1158      England   E12000008               South East   E06000035
#> 1159      England   E12000008               South East   E06000035
#> 1160      England   E12000008               South East   E06000035
#> 1161      England   E12000008               South East   E06000036
#> 1162      England   E12000008               South East   E06000036
#> 1163      England   E12000008               South East   E06000036
#> 1164      England   E12000008               South East   E06000036
#> 1165      England   E12000008               South East   E06000037
#> 1166      England   E12000008               South East   E06000037
#> 1167      England   E12000008               South East   E06000037
#> 1168      England   E12000008               South East   E06000037
#> 1169      England   E12000008               South East   E06000038
#> 1170      England   E12000008               South East   E06000038
#> 1171      England   E12000008               South East   E06000038
#> 1172      England   E12000008               South East   E06000038
#> 1173      England   E12000008               South East   E06000039
#> 1174      England   E12000008               South East   E06000039
#> 1175      England   E12000008               South East   E06000039
#> 1176      England   E12000008               South East   E06000039
#> 1177      England   E12000008               South East   E06000040
#> 1178      England   E12000008               South East   E06000040
#> 1179      England   E12000008               South East   E06000040
#> 1180      England   E12000008               South East   E06000040
#> 1181      England   E12000008               South East   E06000041
#> 1182      England   E12000008               South East   E06000041
#> 1183      England   E12000008               South East   E06000041
#> 1184      England   E12000008               South East   E06000041
#> 1185      England   E12000008               South East   E06000042
#> 1186      England   E12000008               South East   E06000042
#> 1187      England   E12000008               South East   E06000042
#> 1188      England   E12000008               South East   E06000042
#> 1189      England   E12000008               South East   E06000043
#> 1190      England   E12000008               South East   E06000043
#> 1191      England   E12000008               South East   E06000043
#> 1192      England   E12000008               South East   E06000043
#> 1193      England   E12000008               South East   E06000044
#> 1194      England   E12000008               South East   E06000044
#> 1195      England   E12000008               South East   E06000044
#> 1196      England   E12000008               South East   E06000044
#> 1197      England   E12000008               South East   E06000045
#> 1198      England   E12000008               South East   E06000045
#> 1199      England   E12000008               South East   E06000045
#> 1200      England   E12000008               South East   E06000045
#> 1201      England   E12000008               South East   E06000046
#> 1202      England   E12000008               South East   E06000046
#> 1203      England   E12000008               South East   E06000046
#> 1204      England   E12000008               South East   E06000046
#> 1205      England   E12000008               South East   E06000060
#> 1206      England   E12000008               South East   E06000060
#> 1207      England   E12000008               South East   E06000060
#> 1208      England   E12000008               South East   E06000060
#> 1209      England   E12000008               South East   E10000011
#> 1210      England   E12000008               South East   E10000011
#> 1211      England   E12000008               South East   E10000011
#> 1212      England   E12000008               South East   E10000011
#> 1213      England   E12000008               South East   E10000014
#> 1214      England   E12000008               South East   E10000014
#> 1215      England   E12000008               South East   E10000014
#> 1216      England   E12000008               South East   E10000014
#> 1217      England   E12000008               South East   E10000016
#> 1218      England   E12000008               South East   E10000016
#> 1219      England   E12000008               South East   E10000016
#> 1220      England   E12000008               South East   E10000016
#> 1221      England   E12000008               South East   E10000025
#> 1222      England   E12000008               South East   E10000025
#> 1223      England   E12000008               South East   E10000025
#> 1224      England   E12000008               South East   E10000025
#> 1225      England   E12000008               South East   E10000030
#> 1226      England   E12000008               South East   E10000030
#> 1227      England   E12000008               South East   E10000030
#> 1228      England   E12000008               South East   E10000030
#> 1229      England   E12000008               South East   E10000032
#> 1230      England   E12000008               South East   E10000032
#> 1231      England   E12000008               South East   E10000032
#> 1232      England   E12000008               South East   E10000032
#> 1233      England   E12000009               South West        <NA>
#> 1234      England   E12000009               South West        <NA>
#> 1235      England   E12000009               South West        <NA>
#> 1236      England   E12000009               South West        <NA>
#> 1237      England   E12000009               South West   E06000022
#> 1238      England   E12000009               South West   E06000022
#> 1239      England   E12000009               South West   E06000022
#> 1240      England   E12000009               South West   E06000022
#> 1241      England   E12000009               South West   E06000023
#> 1242      England   E12000009               South West   E06000023
#> 1243      England   E12000009               South West   E06000023
#> 1244      England   E12000009               South West   E06000023
#> 1245      England   E12000009               South West   E06000024
#> 1246      England   E12000009               South West   E06000024
#> 1247      England   E12000009               South West   E06000024
#> 1248      England   E12000009               South West   E06000024
#> 1249      England   E12000009               South West   E06000025
#> 1250      England   E12000009               South West   E06000025
#> 1251      England   E12000009               South West   E06000025
#> 1252      England   E12000009               South West   E06000025
#> 1253      England   E12000009               South West   E06000026
#> 1254      England   E12000009               South West   E06000026
#> 1255      England   E12000009               South West   E06000026
#> 1256      England   E12000009               South West   E06000026
#> 1257      England   E12000009               South West   E06000027
#> 1258      England   E12000009               South West   E06000027
#> 1259      England   E12000009               South West   E06000027
#> 1260      England   E12000009               South West   E06000027
#> 1261      England   E12000009               South West   E06000030
#> 1262      England   E12000009               South West   E06000030
#> 1263      England   E12000009               South West   E06000030
#> 1264      England   E12000009               South West   E06000030
#> 1265      England   E12000009               South West   E06000052
#> 1266      England   E12000009               South West   E06000052
#> 1267      England   E12000009               South West   E06000052
#> 1268      England   E12000009               South West   E06000052
#> 1269      England   E12000009               South West   E06000053
#> 1270      England   E12000009               South West   E06000053
#> 1271      England   E12000009               South West   E06000054
#> 1272      England   E12000009               South West   E06000054
#> 1273      England   E12000009               South West   E06000054
#> 1274      England   E12000009               South West   E06000054
#> 1275      England   E12000009               South West   E06000058
#> 1276      England   E12000009               South West   E06000058
#> 1277      England   E12000009               South West   E06000058
#> 1278      England   E12000009               South West   E06000058
#> 1279      England   E12000009               South West   E06000059
#> 1280      England   E12000009               South West   E06000059
#> 1281      England   E12000009               South West   E06000059
#> 1282      England   E12000009               South West   E06000059
#> 1283      England   E12000009               South West   E06000066
#> 1284      England   E12000009               South West   E06000066
#> 1285      England   E12000009               South West   E06000066
#> 1286      England   E12000009               South West   E06000066
#> 1287      England   E12000009               South West   E10000008
#> 1288      England   E12000009               South West   E10000008
#> 1289      England   E12000009               South West   E10000008
#> 1290      England   E12000009               South West   E10000008
#> 1291      England   E12000009               South West   E10000013
#> 1292      England   E12000009               South West   E10000013
#> 1293      England   E12000009               South West   E10000013
#> 1294      England   E12000009               South West   E10000013
#> 1295      England        <NA>                     <NA>        <NA>
#> 1296      England        <NA>                     <NA>        <NA>
#> 1297      England        <NA>                     <NA>        <NA>
#> 1298      England        <NA>                     <NA>        <NA>
#> 1299      England   E12000001               North East        <NA>
#> 1300      England   E12000001               North East        <NA>
#> 1301      England   E12000001               North East        <NA>
#> 1302      England   E12000001               North East        <NA>
#> 1303      England   E12000001               North East   E06000001
#> 1304      England   E12000001               North East   E06000001
#> 1305      England   E12000001               North East   E06000001
#> 1306      England   E12000001               North East   E06000001
#> 1307      England   E12000001               North East   E06000002
#> 1308      England   E12000001               North East   E06000002
#> 1309      England   E12000001               North East   E06000002
#> 1310      England   E12000001               North East   E06000002
#> 1311      England   E12000001               North East   E06000003
#> 1312      England   E12000001               North East   E06000003
#> 1313      England   E12000001               North East   E06000003
#> 1314      England   E12000001               North East   E06000003
#> 1315      England   E12000001               North East   E06000004
#> 1316      England   E12000001               North East   E06000004
#> 1317      England   E12000001               North East   E06000004
#> 1318      England   E12000001               North East   E06000004
#> 1319      England   E12000001               North East   E06000005
#> 1320      England   E12000001               North East   E06000005
#> 1321      England   E12000001               North East   E06000005
#> 1322      England   E12000001               North East   E06000005
#> 1323      England   E12000001               North East   E06000047
#> 1324      England   E12000001               North East   E06000047
#> 1325      England   E12000001               North East   E06000047
#> 1326      England   E12000001               North East   E06000047
#> 1327      England   E12000001               North East   E06000057
#> 1328      England   E12000001               North East   E06000057
#> 1329      England   E12000001               North East   E06000057
#> 1330      England   E12000001               North East   E06000057
#> 1331      England   E12000001               North East   E08000021
#> 1332      England   E12000001               North East   E08000021
#> 1333      England   E12000001               North East   E08000021
#> 1334      England   E12000001               North East   E08000021
#> 1335      England   E12000001               North East   E08000022
#> 1336      England   E12000001               North East   E08000022
#> 1337      England   E12000001               North East   E08000022
#> 1338      England   E12000001               North East   E08000022
#> 1339      England   E12000001               North East   E08000023
#> 1340      England   E12000001               North East   E08000023
#> 1341      England   E12000001               North East   E08000023
#> 1342      England   E12000001               North East   E08000023
#> 1343      England   E12000001               North East   E08000024
#> 1344      England   E12000001               North East   E08000024
#> 1345      England   E12000001               North East   E08000024
#> 1346      England   E12000001               North East   E08000024
#> 1347      England   E12000001               North East   E08000037
#> 1348      England   E12000001               North East   E08000037
#> 1349      England   E12000001               North East   E08000037
#> 1350      England   E12000001               North East   E08000037
#> 1351      England   E12000002               North West        <NA>
#> 1352      England   E12000002               North West        <NA>
#> 1353      England   E12000002               North West        <NA>
#> 1354      England   E12000002               North West        <NA>
#> 1355      England   E12000002               North West   E06000006
#> 1356      England   E12000002               North West   E06000006
#> 1357      England   E12000002               North West   E06000006
#> 1358      England   E12000002               North West   E06000006
#> 1359      England   E12000002               North West   E06000007
#> 1360      England   E12000002               North West   E06000007
#> 1361      England   E12000002               North West   E06000007
#> 1362      England   E12000002               North West   E06000007
#> 1363      England   E12000002               North West   E06000008
#> 1364      England   E12000002               North West   E06000008
#> 1365      England   E12000002               North West   E06000008
#> 1366      England   E12000002               North West   E06000008
#> 1367      England   E12000002               North West   E06000009
#> 1368      England   E12000002               North West   E06000009
#> 1369      England   E12000002               North West   E06000009
#> 1370      England   E12000002               North West   E06000009
#> 1371      England   E12000002               North West   E06000049
#> 1372      England   E12000002               North West   E06000049
#> 1373      England   E12000002               North West   E06000049
#> 1374      England   E12000002               North West   E06000049
#> 1375      England   E12000002               North West   E06000050
#> 1376      England   E12000002               North West   E06000050
#> 1377      England   E12000002               North West   E06000050
#> 1378      England   E12000002               North West   E06000050
#> 1379      England   E12000002               North West   E06000063
#> 1380      England   E12000002               North West   E06000063
#> 1381      England   E12000002               North West   E06000063
#> 1382      England   E12000002               North West   E06000063
#> 1383      England   E12000002               North West   E06000064
#> 1384      England   E12000002               North West   E06000064
#> 1385      England   E12000002               North West   E06000064
#> 1386      England   E12000002               North West   E06000064
#> 1387      England   E12000002               North West   E08000001
#> 1388      England   E12000002               North West   E08000001
#> 1389      England   E12000002               North West   E08000001
#> 1390      England   E12000002               North West   E08000001
#> 1391      England   E12000002               North West   E08000002
#> 1392      England   E12000002               North West   E08000002
#> 1393      England   E12000002               North West   E08000002
#> 1394      England   E12000002               North West   E08000002
#> 1395      England   E12000002               North West   E08000003
#> 1396      England   E12000002               North West   E08000003
#> 1397      England   E12000002               North West   E08000003
#> 1398      England   E12000002               North West   E08000003
#> 1399      England   E12000002               North West   E08000004
#> 1400      England   E12000002               North West   E08000004
#> 1401      England   E12000002               North West   E08000004
#> 1402      England   E12000002               North West   E08000004
#> 1403      England   E12000002               North West   E08000005
#> 1404      England   E12000002               North West   E08000005
#> 1405      England   E12000002               North West   E08000005
#> 1406      England   E12000002               North West   E08000005
#> 1407      England   E12000002               North West   E08000006
#> 1408      England   E12000002               North West   E08000006
#> 1409      England   E12000002               North West   E08000006
#> 1410      England   E12000002               North West   E08000006
#> 1411      England   E12000002               North West   E08000007
#> 1412      England   E12000002               North West   E08000007
#> 1413      England   E12000002               North West   E08000007
#> 1414      England   E12000002               North West   E08000007
#> 1415      England   E12000002               North West   E08000008
#> 1416      England   E12000002               North West   E08000008
#> 1417      England   E12000002               North West   E08000008
#> 1418      England   E12000002               North West   E08000008
#> 1419      England   E12000002               North West   E08000009
#> 1420      England   E12000002               North West   E08000009
#> 1421      England   E12000002               North West   E08000009
#> 1422      England   E12000002               North West   E08000009
#> 1423      England   E12000002               North West   E08000010
#> 1424      England   E12000002               North West   E08000010
#> 1425      England   E12000002               North West   E08000010
#> 1426      England   E12000002               North West   E08000010
#> 1427      England   E12000002               North West   E08000011
#> 1428      England   E12000002               North West   E08000011
#> 1429      England   E12000002               North West   E08000011
#> 1430      England   E12000002               North West   E08000011
#> 1431      England   E12000002               North West   E08000012
#> 1432      England   E12000002               North West   E08000012
#> 1433      England   E12000002               North West   E08000012
#> 1434      England   E12000002               North West   E08000012
#> 1435      England   E12000002               North West   E08000013
#> 1436      England   E12000002               North West   E08000013
#> 1437      England   E12000002               North West   E08000013
#> 1438      England   E12000002               North West   E08000013
#> 1439      England   E12000002               North West   E08000014
#> 1440      England   E12000002               North West   E08000014
#> 1441      England   E12000002               North West   E08000014
#> 1442      England   E12000002               North West   E08000014
#> 1443      England   E12000002               North West   E08000015
#> 1444      England   E12000002               North West   E08000015
#> 1445      England   E12000002               North West   E08000015
#> 1446      England   E12000002               North West   E08000015
#> 1447      England   E12000002               North West   E10000017
#> 1448      England   E12000002               North West   E10000017
#> 1449      England   E12000002               North West   E10000017
#> 1450      England   E12000002               North West   E10000017
#> 1451      England   E12000003 Yorkshire and The Humber        <NA>
#> 1452      England   E12000003 Yorkshire and The Humber        <NA>
#> 1453      England   E12000003 Yorkshire and The Humber        <NA>
#> 1454      England   E12000003 Yorkshire and The Humber        <NA>
#> 1455      England   E12000003 Yorkshire and The Humber   E06000010
#> 1456      England   E12000003 Yorkshire and The Humber   E06000010
#> 1457      England   E12000003 Yorkshire and The Humber   E06000010
#> 1458      England   E12000003 Yorkshire and The Humber   E06000010
#> 1459      England   E12000003 Yorkshire and The Humber   E06000011
#> 1460      England   E12000003 Yorkshire and The Humber   E06000011
#> 1461      England   E12000003 Yorkshire and The Humber   E06000011
#> 1462      England   E12000003 Yorkshire and The Humber   E06000011
#> 1463      England   E12000003 Yorkshire and The Humber   E06000012
#> 1464      England   E12000003 Yorkshire and The Humber   E06000012
#> 1465      England   E12000003 Yorkshire and The Humber   E06000012
#> 1466      England   E12000003 Yorkshire and The Humber   E06000012
#> 1467      England   E12000003 Yorkshire and The Humber   E06000013
#> 1468      England   E12000003 Yorkshire and The Humber   E06000013
#> 1469      England   E12000003 Yorkshire and The Humber   E06000013
#> 1470      England   E12000003 Yorkshire and The Humber   E06000013
#> 1471      England   E12000003 Yorkshire and The Humber   E06000014
#> 1472      England   E12000003 Yorkshire and The Humber   E06000014
#> 1473      England   E12000003 Yorkshire and The Humber   E06000014
#> 1474      England   E12000003 Yorkshire and The Humber   E06000014
#> 1475      England   E12000003 Yorkshire and The Humber   E06000065
#> 1476      England   E12000003 Yorkshire and The Humber   E06000065
#> 1477      England   E12000003 Yorkshire and The Humber   E06000065
#> 1478      England   E12000003 Yorkshire and The Humber   E06000065
#> 1479      England   E12000003 Yorkshire and The Humber   E08000016
#> 1480      England   E12000003 Yorkshire and The Humber   E08000016
#> 1481      England   E12000003 Yorkshire and The Humber   E08000016
#> 1482      England   E12000003 Yorkshire and The Humber   E08000016
#> 1483      England   E12000003 Yorkshire and The Humber   E08000017
#> 1484      England   E12000003 Yorkshire and The Humber   E08000017
#> 1485      England   E12000003 Yorkshire and The Humber   E08000017
#> 1486      England   E12000003 Yorkshire and The Humber   E08000017
#> 1487      England   E12000003 Yorkshire and The Humber   E08000018
#> 1488      England   E12000003 Yorkshire and The Humber   E08000018
#> 1489      England   E12000003 Yorkshire and The Humber   E08000018
#> 1490      England   E12000003 Yorkshire and The Humber   E08000018
#> 1491      England   E12000003 Yorkshire and The Humber   E08000019
#> 1492      England   E12000003 Yorkshire and The Humber   E08000019
#> 1493      England   E12000003 Yorkshire and The Humber   E08000019
#> 1494      England   E12000003 Yorkshire and The Humber   E08000019
#> 1495      England   E12000003 Yorkshire and The Humber   E08000032
#> 1496      England   E12000003 Yorkshire and The Humber   E08000032
#> 1497      England   E12000003 Yorkshire and The Humber   E08000032
#> 1498      England   E12000003 Yorkshire and The Humber   E08000032
#> 1499      England   E12000003 Yorkshire and The Humber   E08000033
#> 1500      England   E12000003 Yorkshire and The Humber   E08000033
#> 1501      England   E12000003 Yorkshire and The Humber   E08000033
#> 1502      England   E12000003 Yorkshire and The Humber   E08000033
#> 1503      England   E12000003 Yorkshire and The Humber   E08000034
#> 1504      England   E12000003 Yorkshire and The Humber   E08000034
#> 1505      England   E12000003 Yorkshire and The Humber   E08000034
#> 1506      England   E12000003 Yorkshire and The Humber   E08000034
#> 1507      England   E12000003 Yorkshire and The Humber   E08000035
#> 1508      England   E12000003 Yorkshire and The Humber   E08000035
#> 1509      England   E12000003 Yorkshire and The Humber   E08000035
#> 1510      England   E12000003 Yorkshire and The Humber   E08000035
#> 1511      England   E12000003 Yorkshire and The Humber   E08000036
#> 1512      England   E12000003 Yorkshire and The Humber   E08000036
#> 1513      England   E12000003 Yorkshire and The Humber   E08000036
#> 1514      England   E12000003 Yorkshire and The Humber   E08000036
#> 1515      England   E12000004            East Midlands        <NA>
#> 1516      England   E12000004            East Midlands        <NA>
#> 1517      England   E12000004            East Midlands        <NA>
#> 1518      England   E12000004            East Midlands        <NA>
#> 1519      England   E12000004            East Midlands   E06000015
#> 1520      England   E12000004            East Midlands   E06000015
#> 1521      England   E12000004            East Midlands   E06000015
#> 1522      England   E12000004            East Midlands   E06000015
#> 1523      England   E12000004            East Midlands   E06000016
#> 1524      England   E12000004            East Midlands   E06000016
#> 1525      England   E12000004            East Midlands   E06000016
#> 1526      England   E12000004            East Midlands   E06000016
#> 1527      England   E12000004            East Midlands   E06000017
#> 1528      England   E12000004            East Midlands   E06000017
#> 1529      England   E12000004            East Midlands   E06000017
#> 1530      England   E12000004            East Midlands   E06000018
#> 1531      England   E12000004            East Midlands   E06000018
#> 1532      England   E12000004            East Midlands   E06000018
#> 1533      England   E12000004            East Midlands   E06000018
#> 1534      England   E12000004            East Midlands   E06000061
#> 1535      England   E12000004            East Midlands   E06000061
#> 1536      England   E12000004            East Midlands   E06000061
#> 1537      England   E12000004            East Midlands   E06000061
#> 1538      England   E12000004            East Midlands   E06000062
#> 1539      England   E12000004            East Midlands   E06000062
#> 1540      England   E12000004            East Midlands   E06000062
#> 1541      England   E12000004            East Midlands   E06000062
#> 1542      England   E12000004            East Midlands   E10000007
#> 1543      England   E12000004            East Midlands   E10000007
#> 1544      England   E12000004            East Midlands   E10000007
#> 1545      England   E12000004            East Midlands   E10000007
#> 1546      England   E12000004            East Midlands   E10000018
#> 1547      England   E12000004            East Midlands   E10000018
#> 1548      England   E12000004            East Midlands   E10000018
#> 1549      England   E12000004            East Midlands   E10000018
#> 1550      England   E12000004            East Midlands   E10000019
#> 1551      England   E12000004            East Midlands   E10000019
#> 1552      England   E12000004            East Midlands   E10000019
#> 1553      England   E12000004            East Midlands   E10000019
#> 1554      England   E12000004            East Midlands   E10000024
#> 1555      England   E12000004            East Midlands   E10000024
#> 1556      England   E12000004            East Midlands   E10000024
#> 1557      England   E12000004            East Midlands   E10000024
#> 1558      England   E12000005            West Midlands        <NA>
#> 1559      England   E12000005            West Midlands        <NA>
#> 1560      England   E12000005            West Midlands        <NA>
#> 1561      England   E12000005            West Midlands        <NA>
#> 1562      England   E12000005            West Midlands   E06000019
#> 1563      England   E12000005            West Midlands   E06000019
#> 1564      England   E12000005            West Midlands   E06000019
#> 1565      England   E12000005            West Midlands   E06000019
#> 1566      England   E12000005            West Midlands   E06000020
#> 1567      England   E12000005            West Midlands   E06000020
#> 1568      England   E12000005            West Midlands   E06000020
#> 1569      England   E12000005            West Midlands   E06000020
#> 1570      England   E12000005            West Midlands   E06000021
#> 1571      England   E12000005            West Midlands   E06000021
#> 1572      England   E12000005            West Midlands   E06000021
#> 1573      England   E12000005            West Midlands   E06000021
#> 1574      England   E12000005            West Midlands   E06000051
#> 1575      England   E12000005            West Midlands   E06000051
#> 1576      England   E12000005            West Midlands   E06000051
#> 1577      England   E12000005            West Midlands   E06000051
#> 1578      England   E12000005            West Midlands   E08000025
#> 1579      England   E12000005            West Midlands   E08000025
#> 1580      England   E12000005            West Midlands   E08000025
#> 1581      England   E12000005            West Midlands   E08000025
#> 1582      England   E12000005            West Midlands   E08000026
#> 1583      England   E12000005            West Midlands   E08000026
#> 1584      England   E12000005            West Midlands   E08000026
#> 1585      England   E12000005            West Midlands   E08000026
#> 1586      England   E12000005            West Midlands   E08000027
#> 1587      England   E12000005            West Midlands   E08000027
#> 1588      England   E12000005            West Midlands   E08000027
#> 1589      England   E12000005            West Midlands   E08000027
#> 1590      England   E12000005            West Midlands   E08000028
#> 1591      England   E12000005            West Midlands   E08000028
#> 1592      England   E12000005            West Midlands   E08000028
#> 1593      England   E12000005            West Midlands   E08000028
#> 1594      England   E12000005            West Midlands   E08000029
#> 1595      England   E12000005            West Midlands   E08000029
#> 1596      England   E12000005            West Midlands   E08000029
#> 1597      England   E12000005            West Midlands   E08000029
#> 1598      England   E12000005            West Midlands   E08000030
#> 1599      England   E12000005            West Midlands   E08000030
#> 1600      England   E12000005            West Midlands   E08000030
#> 1601      England   E12000005            West Midlands   E08000030
#> 1602      England   E12000005            West Midlands   E08000031
#> 1603      England   E12000005            West Midlands   E08000031
#> 1604      England   E12000005            West Midlands   E08000031
#> 1605      England   E12000005            West Midlands   E08000031
#> 1606      England   E12000005            West Midlands   E10000028
#> 1607      England   E12000005            West Midlands   E10000028
#> 1608      England   E12000005            West Midlands   E10000028
#> 1609      England   E12000005            West Midlands   E10000028
#> 1610      England   E12000005            West Midlands   E10000031
#> 1611      England   E12000005            West Midlands   E10000031
#> 1612      England   E12000005            West Midlands   E10000031
#> 1613      England   E12000005            West Midlands   E10000031
#> 1614      England   E12000005            West Midlands   E10000034
#> 1615      England   E12000005            West Midlands   E10000034
#> 1616      England   E12000005            West Midlands   E10000034
#> 1617      England   E12000005            West Midlands   E10000034
#> 1618      England   E12000006          East of England        <NA>
#> 1619      England   E12000006          East of England        <NA>
#> 1620      England   E12000006          East of England        <NA>
#> 1621      England   E12000006          East of England        <NA>
#> 1622      England   E12000006          East of England   E06000031
#> 1623      England   E12000006          East of England   E06000031
#> 1624      England   E12000006          East of England   E06000031
#> 1625      England   E12000006          East of England   E06000031
#> 1626      England   E12000006          East of England   E06000032
#> 1627      England   E12000006          East of England   E06000032
#> 1628      England   E12000006          East of England   E06000032
#> 1629      England   E12000006          East of England   E06000032
#> 1630      England   E12000006          East of England   E06000033
#> 1631      England   E12000006          East of England   E06000033
#> 1632      England   E12000006          East of England   E06000033
#> 1633      England   E12000006          East of England   E06000033
#> 1634      England   E12000006          East of England   E06000034
#> 1635      England   E12000006          East of England   E06000034
#> 1636      England   E12000006          East of England   E06000034
#> 1637      England   E12000006          East of England   E06000034
#> 1638      England   E12000006          East of England   E06000055
#> 1639      England   E12000006          East of England   E06000055
#> 1640      England   E12000006          East of England   E06000055
#> 1641      England   E12000006          East of England   E06000055
#> 1642      England   E12000006          East of England   E06000056
#> 1643      England   E12000006          East of England   E06000056
#> 1644      England   E12000006          East of England   E06000056
#> 1645      England   E12000006          East of England   E06000056
#> 1646      England   E12000006          East of England   E10000003
#> 1647      England   E12000006          East of England   E10000003
#> 1648      England   E12000006          East of England   E10000003
#> 1649      England   E12000006          East of England   E10000003
#> 1650      England   E12000006          East of England   E10000012
#> 1651      England   E12000006          East of England   E10000012
#> 1652      England   E12000006          East of England   E10000012
#> 1653      England   E12000006          East of England   E10000012
#> 1654      England   E12000006          East of England   E10000015
#> 1655      England   E12000006          East of England   E10000015
#> 1656      England   E12000006          East of England   E10000015
#> 1657      England   E12000006          East of England   E10000015
#> 1658      England   E12000006          East of England   E10000020
#> 1659      England   E12000006          East of England   E10000020
#> 1660      England   E12000006          East of England   E10000020
#> 1661      England   E12000006          East of England   E10000020
#> 1662      England   E12000006          East of England   E10000029
#> 1663      England   E12000006          East of England   E10000029
#> 1664      England   E12000006          East of England   E10000029
#> 1665      England   E12000006          East of England   E10000029
#> 1666      England   E12000007                   London        <NA>
#> 1667      England   E12000007                   London        <NA>
#> 1668      England   E12000007                   London        <NA>
#> 1669      England   E12000007                   London        <NA>
#> 1670      England   E12000007                   London   E09000001
#> 1671      England   E12000007                   London   E09000001
#> 1672      England   E12000007                   London   E09000002
#> 1673      England   E12000007                   London   E09000002
#> 1674      England   E12000007                   London   E09000002
#> 1675      England   E12000007                   London   E09000002
#> 1676      England   E12000007                   London   E09000003
#> 1677      England   E12000007                   London   E09000003
#> 1678      England   E12000007                   London   E09000003
#> 1679      England   E12000007                   London   E09000003
#> 1680      England   E12000007                   London   E09000004
#> 1681      England   E12000007                   London   E09000004
#> 1682      England   E12000007                   London   E09000004
#> 1683      England   E12000007                   London   E09000004
#> 1684      England   E12000007                   London   E09000005
#> 1685      England   E12000007                   London   E09000005
#> 1686      England   E12000007                   London   E09000005
#> 1687      England   E12000007                   London   E09000005
#> 1688      England   E12000007                   London   E09000006
#> 1689      England   E12000007                   London   E09000006
#> 1690      England   E12000007                   London   E09000006
#> 1691      England   E12000007                   London   E09000006
#> 1692      England   E12000007                   London   E09000007
#> 1693      England   E12000007                   London   E09000007
#> 1694      England   E12000007                   London   E09000007
#> 1695      England   E12000007                   London   E09000007
#> 1696      England   E12000007                   London   E09000008
#> 1697      England   E12000007                   London   E09000008
#> 1698      England   E12000007                   London   E09000008
#> 1699      England   E12000007                   London   E09000008
#> 1700      England   E12000007                   London   E09000009
#> 1701      England   E12000007                   London   E09000009
#> 1702      England   E12000007                   London   E09000009
#> 1703      England   E12000007                   London   E09000009
#> 1704      England   E12000007                   London   E09000010
#> 1705      England   E12000007                   London   E09000010
#> 1706      England   E12000007                   London   E09000010
#> 1707      England   E12000007                   London   E09000010
#> 1708      England   E12000007                   London   E09000011
#> 1709      England   E12000007                   London   E09000011
#> 1710      England   E12000007                   London   E09000011
#> 1711      England   E12000007                   London   E09000011
#> 1712      England   E12000007                   London   E09000012
#> 1713      England   E12000007                   London   E09000012
#> 1714      England   E12000007                   London   E09000012
#> 1715      England   E12000007                   London   E09000012
#> 1716      England   E12000007                   London   E09000013
#> 1717      England   E12000007                   London   E09000013
#> 1718      England   E12000007                   London   E09000013
#> 1719      England   E12000007                   London   E09000013
#> 1720      England   E12000007                   London   E09000014
#> 1721      England   E12000007                   London   E09000014
#> 1722      England   E12000007                   London   E09000014
#> 1723      England   E12000007                   London   E09000014
#> 1724      England   E12000007                   London   E09000015
#> 1725      England   E12000007                   London   E09000015
#> 1726      England   E12000007                   London   E09000015
#> 1727      England   E12000007                   London   E09000015
#> 1728      England   E12000007                   London   E09000016
#> 1729      England   E12000007                   London   E09000016
#> 1730      England   E12000007                   London   E09000016
#> 1731      England   E12000007                   London   E09000016
#> 1732      England   E12000007                   London   E09000017
#> 1733      England   E12000007                   London   E09000017
#> 1734      England   E12000007                   London   E09000017
#> 1735      England   E12000007                   London   E09000017
#> 1736      England   E12000007                   London   E09000018
#> 1737      England   E12000007                   London   E09000018
#> 1738      England   E12000007                   London   E09000018
#> 1739      England   E12000007                   London   E09000018
#> 1740      England   E12000007                   London   E09000019
#> 1741      England   E12000007                   London   E09000019
#> 1742      England   E12000007                   London   E09000019
#> 1743      England   E12000007                   London   E09000019
#> 1744      England   E12000007                   London   E09000020
#> 1745      England   E12000007                   London   E09000020
#> 1746      England   E12000007                   London   E09000020
#> 1747      England   E12000007                   London   E09000020
#> 1748      England   E12000007                   London   E09000021
#> 1749      England   E12000007                   London   E09000021
#> 1750      England   E12000007                   London   E09000021
#> 1751      England   E12000007                   London   E09000021
#> 1752      England   E12000007                   London   E09000022
#> 1753      England   E12000007                   London   E09000022
#> 1754      England   E12000007                   London   E09000022
#> 1755      England   E12000007                   London   E09000022
#> 1756      England   E12000007                   London   E09000023
#> 1757      England   E12000007                   London   E09000023
#> 1758      England   E12000007                   London   E09000023
#> 1759      England   E12000007                   London   E09000023
#> 1760      England   E12000007                   London   E09000024
#> 1761      England   E12000007                   London   E09000024
#> 1762      England   E12000007                   London   E09000024
#> 1763      England   E12000007                   London   E09000024
#> 1764      England   E12000007                   London   E09000025
#> 1765      England   E12000007                   London   E09000025
#> 1766      England   E12000007                   London   E09000025
#> 1767      England   E12000007                   London   E09000025
#> 1768      England   E12000007                   London   E09000026
#> 1769      England   E12000007                   London   E09000026
#> 1770      England   E12000007                   London   E09000026
#> 1771      England   E12000007                   London   E09000026
#> 1772      England   E12000007                   London   E09000027
#> 1773      England   E12000007                   London   E09000027
#> 1774      England   E12000007                   London   E09000027
#> 1775      England   E12000007                   London   E09000027
#> 1776      England   E12000007                   London   E09000028
#> 1777      England   E12000007                   London   E09000028
#> 1778      England   E12000007                   London   E09000028
#> 1779      England   E12000007                   London   E09000028
#> 1780      England   E12000007                   London   E09000029
#> 1781      England   E12000007                   London   E09000029
#> 1782      England   E12000007                   London   E09000029
#> 1783      England   E12000007                   London   E09000029
#> 1784      England   E12000007                   London   E09000030
#> 1785      England   E12000007                   London   E09000030
#> 1786      England   E12000007                   London   E09000030
#> 1787      England   E12000007                   London   E09000030
#> 1788      England   E12000007                   London   E09000031
#> 1789      England   E12000007                   London   E09000031
#> 1790      England   E12000007                   London   E09000031
#> 1791      England   E12000007                   London   E09000031
#> 1792      England   E12000007                   London   E09000032
#> 1793      England   E12000007                   London   E09000032
#> 1794      England   E12000007                   London   E09000032
#> 1795      England   E12000007                   London   E09000032
#> 1796      England   E12000007                   London   E09000033
#> 1797      England   E12000007                   London   E09000033
#> 1798      England   E12000007                   London   E09000033
#> 1799      England   E12000007                   London   E09000033
#> 1800      England   E12000008               South East        <NA>
#> 1801      England   E12000008               South East        <NA>
#> 1802      England   E12000008               South East        <NA>
#> 1803      England   E12000008               South East        <NA>
#> 1804      England   E12000008               South East   E06000035
#> 1805      England   E12000008               South East   E06000035
#> 1806      England   E12000008               South East   E06000035
#> 1807      England   E12000008               South East   E06000035
#> 1808      England   E12000008               South East   E06000036
#> 1809      England   E12000008               South East   E06000036
#> 1810      England   E12000008               South East   E06000036
#> 1811      England   E12000008               South East   E06000036
#> 1812      England   E12000008               South East   E06000037
#> 1813      England   E12000008               South East   E06000037
#> 1814      England   E12000008               South East   E06000037
#> 1815      England   E12000008               South East   E06000037
#> 1816      England   E12000008               South East   E06000038
#> 1817      England   E12000008               South East   E06000038
#> 1818      England   E12000008               South East   E06000038
#> 1819      England   E12000008               South East   E06000038
#> 1820      England   E12000008               South East   E06000039
#> 1821      England   E12000008               South East   E06000039
#> 1822      England   E12000008               South East   E06000039
#> 1823      England   E12000008               South East   E06000039
#> 1824      England   E12000008               South East   E06000040
#> 1825      England   E12000008               South East   E06000040
#> 1826      England   E12000008               South East   E06000040
#> 1827      England   E12000008               South East   E06000040
#> 1828      England   E12000008               South East   E06000041
#> 1829      England   E12000008               South East   E06000041
#> 1830      England   E12000008               South East   E06000041
#> 1831      England   E12000008               South East   E06000041
#> 1832      England   E12000008               South East   E06000042
#> 1833      England   E12000008               South East   E06000042
#> 1834      England   E12000008               South East   E06000042
#> 1835      England   E12000008               South East   E06000042
#> 1836      England   E12000008               South East   E06000043
#> 1837      England   E12000008               South East   E06000043
#> 1838      England   E12000008               South East   E06000043
#> 1839      England   E12000008               South East   E06000043
#> 1840      England   E12000008               South East   E06000044
#> 1841      England   E12000008               South East   E06000044
#> 1842      England   E12000008               South East   E06000044
#> 1843      England   E12000008               South East   E06000044
#> 1844      England   E12000008               South East   E06000045
#> 1845      England   E12000008               South East   E06000045
#> 1846      England   E12000008               South East   E06000045
#> 1847      England   E12000008               South East   E06000045
#> 1848      England   E12000008               South East   E06000046
#> 1849      England   E12000008               South East   E06000046
#> 1850      England   E12000008               South East   E06000046
#> 1851      England   E12000008               South East   E06000046
#> 1852      England   E12000008               South East   E06000060
#> 1853      England   E12000008               South East   E06000060
#> 1854      England   E12000008               South East   E06000060
#> 1855      England   E12000008               South East   E06000060
#> 1856      England   E12000008               South East   E10000011
#> 1857      England   E12000008               South East   E10000011
#> 1858      England   E12000008               South East   E10000011
#> 1859      England   E12000008               South East   E10000011
#> 1860      England   E12000008               South East   E10000014
#> 1861      England   E12000008               South East   E10000014
#> 1862      England   E12000008               South East   E10000014
#> 1863      England   E12000008               South East   E10000014
#> 1864      England   E12000008               South East   E10000016
#> 1865      England   E12000008               South East   E10000016
#> 1866      England   E12000008               South East   E10000016
#> 1867      England   E12000008               South East   E10000016
#> 1868      England   E12000008               South East   E10000025
#> 1869      England   E12000008               South East   E10000025
#> 1870      England   E12000008               South East   E10000025
#> 1871      England   E12000008               South East   E10000025
#> 1872      England   E12000008               South East   E10000030
#> 1873      England   E12000008               South East   E10000030
#> 1874      England   E12000008               South East   E10000030
#> 1875      England   E12000008               South East   E10000030
#> 1876      England   E12000008               South East   E10000032
#> 1877      England   E12000008               South East   E10000032
#> 1878      England   E12000008               South East   E10000032
#> 1879      England   E12000008               South East   E10000032
#> 1880      England   E12000009               South West        <NA>
#> 1881      England   E12000009               South West        <NA>
#> 1882      England   E12000009               South West        <NA>
#> 1883      England   E12000009               South West        <NA>
#> 1884      England   E12000009               South West   E06000022
#> 1885      England   E12000009               South West   E06000022
#> 1886      England   E12000009               South West   E06000022
#> 1887      England   E12000009               South West   E06000022
#> 1888      England   E12000009               South West   E06000023
#> 1889      England   E12000009               South West   E06000023
#> 1890      England   E12000009               South West   E06000023
#> 1891      England   E12000009               South West   E06000023
#> 1892      England   E12000009               South West   E06000024
#> 1893      England   E12000009               South West   E06000024
#> 1894      England   E12000009               South West   E06000024
#> 1895      England   E12000009               South West   E06000024
#> 1896      England   E12000009               South West   E06000025
#> 1897      England   E12000009               South West   E06000025
#> 1898      England   E12000009               South West   E06000025
#> 1899      England   E12000009               South West   E06000025
#> 1900      England   E12000009               South West   E06000026
#> 1901      England   E12000009               South West   E06000026
#> 1902      England   E12000009               South West   E06000026
#> 1903      England   E12000009               South West   E06000026
#> 1904      England   E12000009               South West   E06000027
#> 1905      England   E12000009               South West   E06000027
#> 1906      England   E12000009               South West   E06000027
#> 1907      England   E12000009               South West   E06000027
#> 1908      England   E12000009               South West   E06000030
#> 1909      England   E12000009               South West   E06000030
#> 1910      England   E12000009               South West   E06000030
#> 1911      England   E12000009               South West   E06000030
#> 1912      England   E12000009               South West   E06000052
#> 1913      England   E12000009               South West   E06000052
#> 1914      England   E12000009               South West   E06000052
#> 1915      England   E12000009               South West   E06000052
#> 1916      England   E12000009               South West   E06000053
#> 1917      England   E12000009               South West   E06000053
#> 1918      England   E12000009               South West   E06000054
#> 1919      England   E12000009               South West   E06000054
#> 1920      England   E12000009               South West   E06000054
#> 1921      England   E12000009               South West   E06000054
#> 1922      England   E12000009               South West   E06000058
#> 1923      England   E12000009               South West   E06000058
#> 1924      England   E12000009               South West   E06000058
#> 1925      England   E12000009               South West   E06000058
#> 1926      England   E12000009               South West   E06000059
#> 1927      England   E12000009               South West   E06000059
#> 1928      England   E12000009               South West   E06000059
#> 1929      England   E12000009               South West   E06000059
#> 1930      England   E12000009               South West   E06000066
#> 1931      England   E12000009               South West   E06000066
#> 1932      England   E12000009               South West   E06000066
#> 1933      England   E12000009               South West   E06000066
#> 1934      England   E12000009               South West   E10000008
#> 1935      England   E12000009               South West   E10000008
#> 1936      England   E12000009               South West   E10000008
#> 1937      England   E12000009               South West   E10000008
#> 1938      England   E12000009               South West   E10000013
#> 1939      England   E12000009               South West   E10000013
#> 1940      England   E12000009               South West   E10000013
#> 1941      England   E12000009               South West   E10000013
#> 1942      England        <NA>                     <NA>        <NA>
#> 1943      England        <NA>                     <NA>        <NA>
#> 1944      England        <NA>                     <NA>        <NA>
#> 1945      England        <NA>                     <NA>        <NA>
#> 1946      England   E12000001               North East        <NA>
#> 1947      England   E12000001               North East        <NA>
#> 1948      England   E12000001               North East        <NA>
#> 1949      England   E12000001               North East        <NA>
#> 1950      England   E12000001               North East   E06000001
#> 1951      England   E12000001               North East   E06000001
#> 1952      England   E12000001               North East   E06000001
#> 1953      England   E12000001               North East   E06000001
#> 1954      England   E12000001               North East   E06000002
#> 1955      England   E12000001               North East   E06000002
#> 1956      England   E12000001               North East   E06000002
#> 1957      England   E12000001               North East   E06000002
#> 1958      England   E12000001               North East   E06000003
#> 1959      England   E12000001               North East   E06000003
#> 1960      England   E12000001               North East   E06000003
#> 1961      England   E12000001               North East   E06000003
#> 1962      England   E12000001               North East   E06000004
#> 1963      England   E12000001               North East   E06000004
#> 1964      England   E12000001               North East   E06000004
#> 1965      England   E12000001               North East   E06000004
#> 1966      England   E12000001               North East   E06000005
#> 1967      England   E12000001               North East   E06000005
#> 1968      England   E12000001               North East   E06000005
#> 1969      England   E12000001               North East   E06000005
#> 1970      England   E12000001               North East   E06000047
#> 1971      England   E12000001               North East   E06000047
#> 1972      England   E12000001               North East   E06000047
#> 1973      England   E12000001               North East   E06000047
#> 1974      England   E12000001               North East   E06000057
#> 1975      England   E12000001               North East   E06000057
#> 1976      England   E12000001               North East   E06000057
#> 1977      England   E12000001               North East   E06000057
#> 1978      England   E12000001               North East   E08000021
#> 1979      England   E12000001               North East   E08000021
#> 1980      England   E12000001               North East   E08000021
#> 1981      England   E12000001               North East   E08000021
#> 1982      England   E12000001               North East   E08000022
#> 1983      England   E12000001               North East   E08000022
#> 1984      England   E12000001               North East   E08000022
#> 1985      England   E12000001               North East   E08000022
#> 1986      England   E12000001               North East   E08000023
#> 1987      England   E12000001               North East   E08000023
#> 1988      England   E12000001               North East   E08000023
#> 1989      England   E12000001               North East   E08000023
#> 1990      England   E12000001               North East   E08000024
#> 1991      England   E12000001               North East   E08000024
#> 1992      England   E12000001               North East   E08000024
#> 1993      England   E12000001               North East   E08000024
#> 1994      England   E12000001               North East   E08000037
#> 1995      England   E12000001               North East   E08000037
#> 1996      England   E12000001               North East   E08000037
#> 1997      England   E12000001               North East   E08000037
#> 1998      England   E12000002               North West        <NA>
#> 1999      England   E12000002               North West        <NA>
#> 2000      England   E12000002               North West        <NA>
#> 2001      England   E12000002               North West        <NA>
#> 2002      England   E12000002               North West   E06000006
#> 2003      England   E12000002               North West   E06000006
#> 2004      England   E12000002               North West   E06000006
#> 2005      England   E12000002               North West   E06000006
#> 2006      England   E12000002               North West   E06000007
#> 2007      England   E12000002               North West   E06000007
#> 2008      England   E12000002               North West   E06000007
#> 2009      England   E12000002               North West   E06000007
#> 2010      England   E12000002               North West   E06000008
#> 2011      England   E12000002               North West   E06000008
#> 2012      England   E12000002               North West   E06000008
#> 2013      England   E12000002               North West   E06000008
#> 2014      England   E12000002               North West   E06000009
#> 2015      England   E12000002               North West   E06000009
#> 2016      England   E12000002               North West   E06000009
#> 2017      England   E12000002               North West   E06000009
#> 2018      England   E12000002               North West   E06000049
#> 2019      England   E12000002               North West   E06000049
#> 2020      England   E12000002               North West   E06000049
#> 2021      England   E12000002               North West   E06000049
#> 2022      England   E12000002               North West   E06000050
#> 2023      England   E12000002               North West   E06000050
#> 2024      England   E12000002               North West   E06000050
#> 2025      England   E12000002               North West   E06000050
#> 2026      England   E12000002               North West   E06000063
#> 2027      England   E12000002               North West   E06000063
#> 2028      England   E12000002               North West   E06000063
#> 2029      England   E12000002               North West   E06000063
#> 2030      England   E12000002               North West   E06000064
#> 2031      England   E12000002               North West   E06000064
#> 2032      England   E12000002               North West   E06000064
#> 2033      England   E12000002               North West   E06000064
#> 2034      England   E12000002               North West   E08000001
#> 2035      England   E12000002               North West   E08000001
#> 2036      England   E12000002               North West   E08000001
#> 2037      England   E12000002               North West   E08000001
#> 2038      England   E12000002               North West   E08000002
#> 2039      England   E12000002               North West   E08000002
#> 2040      England   E12000002               North West   E08000002
#> 2041      England   E12000002               North West   E08000002
#> 2042      England   E12000002               North West   E08000003
#> 2043      England   E12000002               North West   E08000003
#> 2044      England   E12000002               North West   E08000003
#> 2045      England   E12000002               North West   E08000003
#> 2046      England   E12000002               North West   E08000004
#> 2047      England   E12000002               North West   E08000004
#> 2048      England   E12000002               North West   E08000004
#> 2049      England   E12000002               North West   E08000004
#> 2050      England   E12000002               North West   E08000005
#> 2051      England   E12000002               North West   E08000005
#> 2052      England   E12000002               North West   E08000005
#> 2053      England   E12000002               North West   E08000005
#> 2054      England   E12000002               North West   E08000006
#> 2055      England   E12000002               North West   E08000006
#> 2056      England   E12000002               North West   E08000006
#> 2057      England   E12000002               North West   E08000006
#> 2058      England   E12000002               North West   E08000007
#> 2059      England   E12000002               North West   E08000007
#> 2060      England   E12000002               North West   E08000007
#> 2061      England   E12000002               North West   E08000007
#> 2062      England   E12000002               North West   E08000008
#> 2063      England   E12000002               North West   E08000008
#> 2064      England   E12000002               North West   E08000008
#> 2065      England   E12000002               North West   E08000008
#> 2066      England   E12000002               North West   E08000009
#> 2067      England   E12000002               North West   E08000009
#> 2068      England   E12000002               North West   E08000009
#> 2069      England   E12000002               North West   E08000009
#> 2070      England   E12000002               North West   E08000010
#> 2071      England   E12000002               North West   E08000010
#> 2072      England   E12000002               North West   E08000010
#> 2073      England   E12000002               North West   E08000010
#> 2074      England   E12000002               North West   E08000011
#> 2075      England   E12000002               North West   E08000011
#> 2076      England   E12000002               North West   E08000011
#> 2077      England   E12000002               North West   E08000011
#> 2078      England   E12000002               North West   E08000012
#> 2079      England   E12000002               North West   E08000012
#> 2080      England   E12000002               North West   E08000012
#> 2081      England   E12000002               North West   E08000012
#> 2082      England   E12000002               North West   E08000013
#> 2083      England   E12000002               North West   E08000013
#> 2084      England   E12000002               North West   E08000013
#> 2085      England   E12000002               North West   E08000013
#> 2086      England   E12000002               North West   E08000014
#> 2087      England   E12000002               North West   E08000014
#> 2088      England   E12000002               North West   E08000014
#> 2089      England   E12000002               North West   E08000014
#> 2090      England   E12000002               North West   E08000015
#> 2091      England   E12000002               North West   E08000015
#> 2092      England   E12000002               North West   E08000015
#> 2093      England   E12000002               North West   E08000015
#> 2094      England   E12000002               North West   E10000017
#> 2095      England   E12000002               North West   E10000017
#> 2096      England   E12000002               North West   E10000017
#> 2097      England   E12000002               North West   E10000017
#> 2098      England   E12000003 Yorkshire and The Humber        <NA>
#> 2099      England   E12000003 Yorkshire and The Humber        <NA>
#> 2100      England   E12000003 Yorkshire and The Humber        <NA>
#> 2101      England   E12000003 Yorkshire and The Humber        <NA>
#> 2102      England   E12000003 Yorkshire and The Humber   E06000010
#> 2103      England   E12000003 Yorkshire and The Humber   E06000010
#> 2104      England   E12000003 Yorkshire and The Humber   E06000010
#> 2105      England   E12000003 Yorkshire and The Humber   E06000010
#> 2106      England   E12000003 Yorkshire and The Humber   E06000011
#> 2107      England   E12000003 Yorkshire and The Humber   E06000011
#> 2108      England   E12000003 Yorkshire and The Humber   E06000011
#> 2109      England   E12000003 Yorkshire and The Humber   E06000011
#> 2110      England   E12000003 Yorkshire and The Humber   E06000012
#> 2111      England   E12000003 Yorkshire and The Humber   E06000012
#> 2112      England   E12000003 Yorkshire and The Humber   E06000012
#> 2113      England   E12000003 Yorkshire and The Humber   E06000012
#> 2114      England   E12000003 Yorkshire and The Humber   E06000013
#> 2115      England   E12000003 Yorkshire and The Humber   E06000013
#> 2116      England   E12000003 Yorkshire and The Humber   E06000013
#> 2117      England   E12000003 Yorkshire and The Humber   E06000013
#> 2118      England   E12000003 Yorkshire and The Humber   E06000014
#> 2119      England   E12000003 Yorkshire and The Humber   E06000014
#> 2120      England   E12000003 Yorkshire and The Humber   E06000014
#> 2121      England   E12000003 Yorkshire and The Humber   E06000014
#> 2122      England   E12000003 Yorkshire and The Humber   E06000065
#> 2123      England   E12000003 Yorkshire and The Humber   E06000065
#> 2124      England   E12000003 Yorkshire and The Humber   E06000065
#> 2125      England   E12000003 Yorkshire and The Humber   E06000065
#> 2126      England   E12000003 Yorkshire and The Humber   E08000016
#> 2127      England   E12000003 Yorkshire and The Humber   E08000016
#> 2128      England   E12000003 Yorkshire and The Humber   E08000016
#> 2129      England   E12000003 Yorkshire and The Humber   E08000016
#> 2130      England   E12000003 Yorkshire and The Humber   E08000017
#> 2131      England   E12000003 Yorkshire and The Humber   E08000017
#> 2132      England   E12000003 Yorkshire and The Humber   E08000017
#> 2133      England   E12000003 Yorkshire and The Humber   E08000017
#> 2134      England   E12000003 Yorkshire and The Humber   E08000018
#> 2135      England   E12000003 Yorkshire and The Humber   E08000018
#> 2136      England   E12000003 Yorkshire and The Humber   E08000018
#> 2137      England   E12000003 Yorkshire and The Humber   E08000018
#> 2138      England   E12000003 Yorkshire and The Humber   E08000019
#> 2139      England   E12000003 Yorkshire and The Humber   E08000019
#> 2140      England   E12000003 Yorkshire and The Humber   E08000019
#> 2141      England   E12000003 Yorkshire and The Humber   E08000019
#> 2142      England   E12000003 Yorkshire and The Humber   E08000032
#> 2143      England   E12000003 Yorkshire and The Humber   E08000032
#> 2144      England   E12000003 Yorkshire and The Humber   E08000032
#> 2145      England   E12000003 Yorkshire and The Humber   E08000032
#> 2146      England   E12000003 Yorkshire and The Humber   E08000033
#> 2147      England   E12000003 Yorkshire and The Humber   E08000033
#> 2148      England   E12000003 Yorkshire and The Humber   E08000033
#> 2149      England   E12000003 Yorkshire and The Humber   E08000033
#> 2150      England   E12000003 Yorkshire and The Humber   E08000034
#> 2151      England   E12000003 Yorkshire and The Humber   E08000034
#> 2152      England   E12000003 Yorkshire and The Humber   E08000034
#> 2153      England   E12000003 Yorkshire and The Humber   E08000034
#> 2154      England   E12000003 Yorkshire and The Humber   E08000035
#> 2155      England   E12000003 Yorkshire and The Humber   E08000035
#> 2156      England   E12000003 Yorkshire and The Humber   E08000035
#> 2157      England   E12000003 Yorkshire and The Humber   E08000035
#> 2158      England   E12000003 Yorkshire and The Humber   E08000036
#> 2159      England   E12000003 Yorkshire and The Humber   E08000036
#> 2160      England   E12000003 Yorkshire and The Humber   E08000036
#> 2161      England   E12000003 Yorkshire and The Humber   E08000036
#> 2162      England   E12000004            East Midlands        <NA>
#> 2163      England   E12000004            East Midlands        <NA>
#> 2164      England   E12000004            East Midlands        <NA>
#> 2165      England   E12000004            East Midlands        <NA>
#> 2166      England   E12000004            East Midlands   E06000015
#> 2167      England   E12000004            East Midlands   E06000015
#> 2168      England   E12000004            East Midlands   E06000015
#> 2169      England   E12000004            East Midlands   E06000015
#> 2170      England   E12000004            East Midlands   E06000016
#> 2171      England   E12000004            East Midlands   E06000016
#> 2172      England   E12000004            East Midlands   E06000016
#> 2173      England   E12000004            East Midlands   E06000016
#> 2174      England   E12000004            East Midlands   E06000017
#> 2175      England   E12000004            East Midlands   E06000017
#> 2176      England   E12000004            East Midlands   E06000017
#> 2177      England   E12000004            East Midlands   E06000018
#> 2178      England   E12000004            East Midlands   E06000018
#> 2179      England   E12000004            East Midlands   E06000018
#> 2180      England   E12000004            East Midlands   E06000018
#> 2181      England   E12000004            East Midlands   E06000061
#> 2182      England   E12000004            East Midlands   E06000061
#> 2183      England   E12000004            East Midlands   E06000061
#> 2184      England   E12000004            East Midlands   E06000061
#> 2185      England   E12000004            East Midlands   E06000062
#> 2186      England   E12000004            East Midlands   E06000062
#> 2187      England   E12000004            East Midlands   E06000062
#> 2188      England   E12000004            East Midlands   E06000062
#> 2189      England   E12000004            East Midlands   E10000007
#> 2190      England   E12000004            East Midlands   E10000007
#> 2191      England   E12000004            East Midlands   E10000007
#> 2192      England   E12000004            East Midlands   E10000007
#> 2193      England   E12000004            East Midlands   E10000018
#> 2194      England   E12000004            East Midlands   E10000018
#> 2195      England   E12000004            East Midlands   E10000018
#> 2196      England   E12000004            East Midlands   E10000018
#> 2197      England   E12000004            East Midlands   E10000019
#> 2198      England   E12000004            East Midlands   E10000019
#> 2199      England   E12000004            East Midlands   E10000019
#> 2200      England   E12000004            East Midlands   E10000019
#> 2201      England   E12000004            East Midlands   E10000024
#> 2202      England   E12000004            East Midlands   E10000024
#> 2203      England   E12000004            East Midlands   E10000024
#> 2204      England   E12000004            East Midlands   E10000024
#> 2205      England   E12000005            West Midlands        <NA>
#> 2206      England   E12000005            West Midlands        <NA>
#> 2207      England   E12000005            West Midlands        <NA>
#> 2208      England   E12000005            West Midlands        <NA>
#> 2209      England   E12000005            West Midlands   E06000019
#> 2210      England   E12000005            West Midlands   E06000019
#> 2211      England   E12000005            West Midlands   E06000019
#> 2212      England   E12000005            West Midlands   E06000019
#> 2213      England   E12000005            West Midlands   E06000020
#> 2214      England   E12000005            West Midlands   E06000020
#> 2215      England   E12000005            West Midlands   E06000020
#> 2216      England   E12000005            West Midlands   E06000020
#> 2217      England   E12000005            West Midlands   E06000021
#> 2218      England   E12000005            West Midlands   E06000021
#> 2219      England   E12000005            West Midlands   E06000021
#> 2220      England   E12000005            West Midlands   E06000021
#> 2221      England   E12000005            West Midlands   E06000051
#> 2222      England   E12000005            West Midlands   E06000051
#> 2223      England   E12000005            West Midlands   E06000051
#> 2224      England   E12000005            West Midlands   E06000051
#> 2225      England   E12000005            West Midlands   E08000025
#> 2226      England   E12000005            West Midlands   E08000025
#> 2227      England   E12000005            West Midlands   E08000025
#> 2228      England   E12000005            West Midlands   E08000025
#> 2229      England   E12000005            West Midlands   E08000026
#> 2230      England   E12000005            West Midlands   E08000026
#> 2231      England   E12000005            West Midlands   E08000026
#> 2232      England   E12000005            West Midlands   E08000026
#> 2233      England   E12000005            West Midlands   E08000027
#> 2234      England   E12000005            West Midlands   E08000027
#> 2235      England   E12000005            West Midlands   E08000027
#> 2236      England   E12000005            West Midlands   E08000027
#> 2237      England   E12000005            West Midlands   E08000028
#> 2238      England   E12000005            West Midlands   E08000028
#> 2239      England   E12000005            West Midlands   E08000028
#> 2240      England   E12000005            West Midlands   E08000028
#> 2241      England   E12000005            West Midlands   E08000029
#> 2242      England   E12000005            West Midlands   E08000029
#> 2243      England   E12000005            West Midlands   E08000029
#> 2244      England   E12000005            West Midlands   E08000029
#> 2245      England   E12000005            West Midlands   E08000030
#> 2246      England   E12000005            West Midlands   E08000030
#> 2247      England   E12000005            West Midlands   E08000030
#> 2248      England   E12000005            West Midlands   E08000030
#> 2249      England   E12000005            West Midlands   E08000031
#> 2250      England   E12000005            West Midlands   E08000031
#> 2251      England   E12000005            West Midlands   E08000031
#> 2252      England   E12000005            West Midlands   E08000031
#> 2253      England   E12000005            West Midlands   E10000028
#> 2254      England   E12000005            West Midlands   E10000028
#> 2255      England   E12000005            West Midlands   E10000028
#> 2256      England   E12000005            West Midlands   E10000028
#> 2257      England   E12000005            West Midlands   E10000031
#> 2258      England   E12000005            West Midlands   E10000031
#> 2259      England   E12000005            West Midlands   E10000031
#> 2260      England   E12000005            West Midlands   E10000031
#> 2261      England   E12000005            West Midlands   E10000034
#> 2262      England   E12000005            West Midlands   E10000034
#> 2263      England   E12000005            West Midlands   E10000034
#> 2264      England   E12000005            West Midlands   E10000034
#> 2265      England   E12000006          East of England        <NA>
#> 2266      England   E12000006          East of England        <NA>
#> 2267      England   E12000006          East of England        <NA>
#> 2268      England   E12000006          East of England        <NA>
#> 2269      England   E12000006          East of England   E06000031
#> 2270      England   E12000006          East of England   E06000031
#> 2271      England   E12000006          East of England   E06000031
#> 2272      England   E12000006          East of England   E06000031
#> 2273      England   E12000006          East of England   E06000032
#> 2274      England   E12000006          East of England   E06000032
#> 2275      England   E12000006          East of England   E06000032
#> 2276      England   E12000006          East of England   E06000032
#> 2277      England   E12000006          East of England   E06000033
#> 2278      England   E12000006          East of England   E06000033
#> 2279      England   E12000006          East of England   E06000033
#> 2280      England   E12000006          East of England   E06000033
#> 2281      England   E12000006          East of England   E06000034
#> 2282      England   E12000006          East of England   E06000034
#> 2283      England   E12000006          East of England   E06000034
#> 2284      England   E12000006          East of England   E06000034
#> 2285      England   E12000006          East of England   E06000055
#> 2286      England   E12000006          East of England   E06000055
#> 2287      England   E12000006          East of England   E06000055
#> 2288      England   E12000006          East of England   E06000055
#> 2289      England   E12000006          East of England   E06000056
#> 2290      England   E12000006          East of England   E06000056
#> 2291      England   E12000006          East of England   E06000056
#> 2292      England   E12000006          East of England   E06000056
#> 2293      England   E12000006          East of England   E10000003
#> 2294      England   E12000006          East of England   E10000003
#> 2295      England   E12000006          East of England   E10000003
#> 2296      England   E12000006          East of England   E10000003
#> 2297      England   E12000006          East of England   E10000012
#> 2298      England   E12000006          East of England   E10000012
#> 2299      England   E12000006          East of England   E10000012
#> 2300      England   E12000006          East of England   E10000012
#> 2301      England   E12000006          East of England   E10000015
#> 2302      England   E12000006          East of England   E10000015
#> 2303      England   E12000006          East of England   E10000015
#> 2304      England   E12000006          East of England   E10000015
#> 2305      England   E12000006          East of England   E10000020
#> 2306      England   E12000006          East of England   E10000020
#> 2307      England   E12000006          East of England   E10000020
#> 2308      England   E12000006          East of England   E10000020
#> 2309      England   E12000006          East of England   E10000029
#> 2310      England   E12000006          East of England   E10000029
#> 2311      England   E12000006          East of England   E10000029
#> 2312      England   E12000006          East of England   E10000029
#> 2313      England   E12000007                   London        <NA>
#> 2314      England   E12000007                   London        <NA>
#> 2315      England   E12000007                   London        <NA>
#> 2316      England   E12000007                   London        <NA>
#> 2317      England   E12000007                   London   E09000001
#> 2318      England   E12000007                   London   E09000001
#> 2319      England   E12000007                   London   E09000002
#> 2320      England   E12000007                   London   E09000002
#> 2321      England   E12000007                   London   E09000002
#> 2322      England   E12000007                   London   E09000002
#> 2323      England   E12000007                   London   E09000003
#> 2324      England   E12000007                   London   E09000003
#> 2325      England   E12000007                   London   E09000003
#> 2326      England   E12000007                   London   E09000003
#> 2327      England   E12000007                   London   E09000004
#> 2328      England   E12000007                   London   E09000004
#> 2329      England   E12000007                   London   E09000004
#> 2330      England   E12000007                   London   E09000004
#> 2331      England   E12000007                   London   E09000005
#> 2332      England   E12000007                   London   E09000005
#> 2333      England   E12000007                   London   E09000005
#> 2334      England   E12000007                   London   E09000005
#> 2335      England   E12000007                   London   E09000006
#> 2336      England   E12000007                   London   E09000006
#> 2337      England   E12000007                   London   E09000006
#> 2338      England   E12000007                   London   E09000006
#> 2339      England   E12000007                   London   E09000007
#> 2340      England   E12000007                   London   E09000007
#> 2341      England   E12000007                   London   E09000007
#> 2342      England   E12000007                   London   E09000007
#> 2343      England   E12000007                   London   E09000008
#> 2344      England   E12000007                   London   E09000008
#> 2345      England   E12000007                   London   E09000008
#> 2346      England   E12000007                   London   E09000008
#> 2347      England   E12000007                   London   E09000009
#> 2348      England   E12000007                   London   E09000009
#> 2349      England   E12000007                   London   E09000009
#> 2350      England   E12000007                   London   E09000009
#> 2351      England   E12000007                   London   E09000010
#> 2352      England   E12000007                   London   E09000010
#> 2353      England   E12000007                   London   E09000010
#> 2354      England   E12000007                   London   E09000010
#> 2355      England   E12000007                   London   E09000011
#> 2356      England   E12000007                   London   E09000011
#> 2357      England   E12000007                   London   E09000011
#> 2358      England   E12000007                   London   E09000011
#> 2359      England   E12000007                   London   E09000012
#> 2360      England   E12000007                   London   E09000012
#> 2361      England   E12000007                   London   E09000012
#> 2362      England   E12000007                   London   E09000012
#> 2363      England   E12000007                   London   E09000013
#> 2364      England   E12000007                   London   E09000013
#> 2365      England   E12000007                   London   E09000013
#> 2366      England   E12000007                   London   E09000013
#> 2367      England   E12000007                   London   E09000014
#> 2368      England   E12000007                   London   E09000014
#> 2369      England   E12000007                   London   E09000014
#> 2370      England   E12000007                   London   E09000014
#> 2371      England   E12000007                   London   E09000015
#> 2372      England   E12000007                   London   E09000015
#> 2373      England   E12000007                   London   E09000015
#> 2374      England   E12000007                   London   E09000015
#> 2375      England   E12000007                   London   E09000016
#> 2376      England   E12000007                   London   E09000016
#> 2377      England   E12000007                   London   E09000016
#> 2378      England   E12000007                   London   E09000016
#> 2379      England   E12000007                   London   E09000017
#> 2380      England   E12000007                   London   E09000017
#> 2381      England   E12000007                   London   E09000017
#> 2382      England   E12000007                   London   E09000017
#> 2383      England   E12000007                   London   E09000018
#> 2384      England   E12000007                   London   E09000018
#> 2385      England   E12000007                   London   E09000018
#> 2386      England   E12000007                   London   E09000018
#> 2387      England   E12000007                   London   E09000019
#> 2388      England   E12000007                   London   E09000019
#> 2389      England   E12000007                   London   E09000019
#> 2390      England   E12000007                   London   E09000019
#> 2391      England   E12000007                   London   E09000020
#> 2392      England   E12000007                   London   E09000020
#> 2393      England   E12000007                   London   E09000020
#> 2394      England   E12000007                   London   E09000020
#> 2395      England   E12000007                   London   E09000021
#> 2396      England   E12000007                   London   E09000021
#> 2397      England   E12000007                   London   E09000021
#> 2398      England   E12000007                   London   E09000021
#> 2399      England   E12000007                   London   E09000022
#> 2400      England   E12000007                   London   E09000022
#> 2401      England   E12000007                   London   E09000022
#> 2402      England   E12000007                   London   E09000022
#> 2403      England   E12000007                   London   E09000023
#> 2404      England   E12000007                   London   E09000023
#> 2405      England   E12000007                   London   E09000023
#> 2406      England   E12000007                   London   E09000023
#> 2407      England   E12000007                   London   E09000024
#> 2408      England   E12000007                   London   E09000024
#> 2409      England   E12000007                   London   E09000024
#> 2410      England   E12000007                   London   E09000024
#> 2411      England   E12000007                   London   E09000025
#> 2412      England   E12000007                   London   E09000025
#> 2413      England   E12000007                   London   E09000025
#> 2414      England   E12000007                   London   E09000025
#> 2415      England   E12000007                   London   E09000026
#> 2416      England   E12000007                   London   E09000026
#> 2417      England   E12000007                   London   E09000026
#> 2418      England   E12000007                   London   E09000026
#> 2419      England   E12000007                   London   E09000027
#> 2420      England   E12000007                   London   E09000027
#> 2421      England   E12000007                   London   E09000027
#> 2422      England   E12000007                   London   E09000027
#> 2423      England   E12000007                   London   E09000028
#> 2424      England   E12000007                   London   E09000028
#> 2425      England   E12000007                   London   E09000028
#> 2426      England   E12000007                   London   E09000028
#> 2427      England   E12000007                   London   E09000029
#> 2428      England   E12000007                   London   E09000029
#> 2429      England   E12000007                   London   E09000029
#> 2430      England   E12000007                   London   E09000029
#> 2431      England   E12000007                   London   E09000030
#> 2432      England   E12000007                   London   E09000030
#> 2433      England   E12000007                   London   E09000030
#> 2434      England   E12000007                   London   E09000030
#> 2435      England   E12000007                   London   E09000031
#> 2436      England   E12000007                   London   E09000031
#> 2437      England   E12000007                   London   E09000031
#> 2438      England   E12000007                   London   E09000031
#> 2439      England   E12000007                   London   E09000032
#> 2440      England   E12000007                   London   E09000032
#> 2441      England   E12000007                   London   E09000032
#> 2442      England   E12000007                   London   E09000032
#> 2443      England   E12000007                   London   E09000033
#> 2444      England   E12000007                   London   E09000033
#> 2445      England   E12000007                   London   E09000033
#> 2446      England   E12000007                   London   E09000033
#> 2447      England   E12000008               South East        <NA>
#> 2448      England   E12000008               South East        <NA>
#> 2449      England   E12000008               South East        <NA>
#> 2450      England   E12000008               South East        <NA>
#> 2451      England   E12000008               South East   E06000035
#> 2452      England   E12000008               South East   E06000035
#> 2453      England   E12000008               South East   E06000035
#> 2454      England   E12000008               South East   E06000035
#> 2455      England   E12000008               South East   E06000036
#> 2456      England   E12000008               South East   E06000036
#> 2457      England   E12000008               South East   E06000036
#> 2458      England   E12000008               South East   E06000036
#> 2459      England   E12000008               South East   E06000037
#> 2460      England   E12000008               South East   E06000037
#> 2461      England   E12000008               South East   E06000037
#> 2462      England   E12000008               South East   E06000037
#> 2463      England   E12000008               South East   E06000038
#> 2464      England   E12000008               South East   E06000038
#> 2465      England   E12000008               South East   E06000038
#> 2466      England   E12000008               South East   E06000038
#> 2467      England   E12000008               South East   E06000039
#> 2468      England   E12000008               South East   E06000039
#> 2469      England   E12000008               South East   E06000039
#> 2470      England   E12000008               South East   E06000039
#> 2471      England   E12000008               South East   E06000040
#> 2472      England   E12000008               South East   E06000040
#> 2473      England   E12000008               South East   E06000040
#> 2474      England   E12000008               South East   E06000040
#> 2475      England   E12000008               South East   E06000041
#> 2476      England   E12000008               South East   E06000041
#> 2477      England   E12000008               South East   E06000041
#> 2478      England   E12000008               South East   E06000041
#> 2479      England   E12000008               South East   E06000042
#> 2480      England   E12000008               South East   E06000042
#> 2481      England   E12000008               South East   E06000042
#> 2482      England   E12000008               South East   E06000042
#> 2483      England   E12000008               South East   E06000043
#> 2484      England   E12000008               South East   E06000043
#> 2485      England   E12000008               South East   E06000043
#> 2486      England   E12000008               South East   E06000043
#> 2487      England   E12000008               South East   E06000044
#> 2488      England   E12000008               South East   E06000044
#> 2489      England   E12000008               South East   E06000044
#> 2490      England   E12000008               South East   E06000044
#> 2491      England   E12000008               South East   E06000045
#> 2492      England   E12000008               South East   E06000045
#> 2493      England   E12000008               South East   E06000045
#> 2494      England   E12000008               South East   E06000045
#> 2495      England   E12000008               South East   E06000046
#> 2496      England   E12000008               South East   E06000046
#> 2497      England   E12000008               South East   E06000046
#> 2498      England   E12000008               South East   E06000046
#> 2499      England   E12000008               South East   E06000060
#> 2500      England   E12000008               South East   E06000060
#> 2501      England   E12000008               South East   E06000060
#> 2502      England   E12000008               South East   E06000060
#> 2503      England   E12000008               South East   E10000011
#> 2504      England   E12000008               South East   E10000011
#> 2505      England   E12000008               South East   E10000011
#> 2506      England   E12000008               South East   E10000011
#> 2507      England   E12000008               South East   E10000014
#> 2508      England   E12000008               South East   E10000014
#> 2509      England   E12000008               South East   E10000014
#> 2510      England   E12000008               South East   E10000014
#> 2511      England   E12000008               South East   E10000016
#> 2512      England   E12000008               South East   E10000016
#> 2513      England   E12000008               South East   E10000016
#> 2514      England   E12000008               South East   E10000016
#> 2515      England   E12000008               South East   E10000025
#> 2516      England   E12000008               South East   E10000025
#> 2517      England   E12000008               South East   E10000025
#> 2518      England   E12000008               South East   E10000025
#> 2519      England   E12000008               South East   E10000030
#> 2520      England   E12000008               South East   E10000030
#> 2521      England   E12000008               South East   E10000030
#> 2522      England   E12000008               South East   E10000030
#> 2523      England   E12000008               South East   E10000032
#> 2524      England   E12000008               South East   E10000032
#> 2525      England   E12000008               South East   E10000032
#> 2526      England   E12000008               South East   E10000032
#> 2527      England   E12000009               South West        <NA>
#> 2528      England   E12000009               South West        <NA>
#> 2529      England   E12000009               South West        <NA>
#> 2530      England   E12000009               South West        <NA>
#> 2531      England   E12000009               South West   E06000022
#> 2532      England   E12000009               South West   E06000022
#> 2533      England   E12000009               South West   E06000022
#> 2534      England   E12000009               South West   E06000022
#> 2535      England   E12000009               South West   E06000023
#> 2536      England   E12000009               South West   E06000023
#> 2537      England   E12000009               South West   E06000023
#> 2538      England   E12000009               South West   E06000023
#> 2539      England   E12000009               South West   E06000024
#> 2540      England   E12000009               South West   E06000024
#> 2541      England   E12000009               South West   E06000024
#> 2542      England   E12000009               South West   E06000024
#> 2543      England   E12000009               South West   E06000025
#> 2544      England   E12000009               South West   E06000025
#> 2545      England   E12000009               South West   E06000025
#> 2546      England   E12000009               South West   E06000025
#> 2547      England   E12000009               South West   E06000026
#> 2548      England   E12000009               South West   E06000026
#> 2549      England   E12000009               South West   E06000026
#> 2550      England   E12000009               South West   E06000026
#> 2551      England   E12000009               South West   E06000027
#> 2552      England   E12000009               South West   E06000027
#> 2553      England   E12000009               South West   E06000027
#> 2554      England   E12000009               South West   E06000027
#> 2555      England   E12000009               South West   E06000030
#> 2556      England   E12000009               South West   E06000030
#> 2557      England   E12000009               South West   E06000030
#> 2558      England   E12000009               South West   E06000030
#> 2559      England   E12000009               South West   E06000052
#> 2560      England   E12000009               South West   E06000052
#> 2561      England   E12000009               South West   E06000052
#> 2562      England   E12000009               South West   E06000052
#> 2563      England   E12000009               South West   E06000053
#> 2564      England   E12000009               South West   E06000053
#> 2565      England   E12000009               South West   E06000054
#> 2566      England   E12000009               South West   E06000054
#> 2567      England   E12000009               South West   E06000054
#> 2568      England   E12000009               South West   E06000054
#> 2569      England   E12000009               South West   E06000058
#> 2570      England   E12000009               South West   E06000058
#> 2571      England   E12000009               South West   E06000058
#> 2572      England   E12000009               South West   E06000058
#> 2573      England   E12000009               South West   E06000059
#> 2574      England   E12000009               South West   E06000059
#> 2575      England   E12000009               South West   E06000059
#> 2576      England   E12000009               South West   E06000059
#> 2577      England   E12000009               South West   E06000066
#> 2578      England   E12000009               South West   E06000066
#> 2579      England   E12000009               South West   E06000066
#> 2580      England   E12000009               South West   E06000066
#> 2581      England   E12000009               South West   E10000008
#> 2582      England   E12000009               South West   E10000008
#> 2583      England   E12000009               South West   E10000008
#> 2584      England   E12000009               South West   E10000008
#> 2585      England   E12000009               South West   E10000013
#> 2586      England   E12000009               South West   E10000013
#> 2587      England   E12000009               South West   E10000013
#> 2588      England   E12000009               South West   E10000013
#> 2589      England        <NA>                     <NA>        <NA>
#> 2590      England        <NA>                     <NA>        <NA>
#> 2591      England        <NA>                     <NA>        <NA>
#> 2592      England        <NA>                     <NA>        <NA>
#> 2593      England   E12000001               North East        <NA>
#> 2594      England   E12000001               North East        <NA>
#> 2595      England   E12000001               North East        <NA>
#> 2596      England   E12000001               North East        <NA>
#> 2597      England   E12000001               North East   E06000001
#> 2598      England   E12000001               North East   E06000001
#> 2599      England   E12000001               North East   E06000001
#> 2600      England   E12000001               North East   E06000001
#> 2601      England   E12000001               North East   E06000002
#> 2602      England   E12000001               North East   E06000002
#> 2603      England   E12000001               North East   E06000002
#> 2604      England   E12000001               North East   E06000002
#> 2605      England   E12000001               North East   E06000003
#> 2606      England   E12000001               North East   E06000003
#> 2607      England   E12000001               North East   E06000003
#> 2608      England   E12000001               North East   E06000003
#> 2609      England   E12000001               North East   E06000004
#> 2610      England   E12000001               North East   E06000004
#> 2611      England   E12000001               North East   E06000004
#> 2612      England   E12000001               North East   E06000004
#> 2613      England   E12000001               North East   E06000005
#> 2614      England   E12000001               North East   E06000005
#> 2615      England   E12000001               North East   E06000005
#> 2616      England   E12000001               North East   E06000005
#> 2617      England   E12000001               North East   E06000047
#> 2618      England   E12000001               North East   E06000047
#> 2619      England   E12000001               North East   E06000047
#> 2620      England   E12000001               North East   E06000047
#> 2621      England   E12000001               North East   E06000057
#> 2622      England   E12000001               North East   E06000057
#> 2623      England   E12000001               North East   E06000057
#> 2624      England   E12000001               North East   E06000057
#> 2625      England   E12000001               North East   E08000021
#> 2626      England   E12000001               North East   E08000021
#> 2627      England   E12000001               North East   E08000021
#> 2628      England   E12000001               North East   E08000021
#> 2629      England   E12000001               North East   E08000022
#> 2630      England   E12000001               North East   E08000022
#> 2631      England   E12000001               North East   E08000022
#> 2632      England   E12000001               North East   E08000022
#> 2633      England   E12000001               North East   E08000023
#> 2634      England   E12000001               North East   E08000023
#> 2635      England   E12000001               North East   E08000023
#> 2636      England   E12000001               North East   E08000023
#> 2637      England   E12000001               North East   E08000024
#> 2638      England   E12000001               North East   E08000024
#> 2639      England   E12000001               North East   E08000024
#> 2640      England   E12000001               North East   E08000024
#> 2641      England   E12000001               North East   E08000037
#> 2642      England   E12000001               North East   E08000037
#> 2643      England   E12000001               North East   E08000037
#> 2644      England   E12000001               North East   E08000037
#> 2645      England   E12000002               North West        <NA>
#> 2646      England   E12000002               North West        <NA>
#> 2647      England   E12000002               North West        <NA>
#> 2648      England   E12000002               North West        <NA>
#> 2649      England   E12000002               North West   E06000006
#> 2650      England   E12000002               North West   E06000006
#> 2651      England   E12000002               North West   E06000006
#> 2652      England   E12000002               North West   E06000006
#> 2653      England   E12000002               North West   E06000007
#> 2654      England   E12000002               North West   E06000007
#> 2655      England   E12000002               North West   E06000007
#> 2656      England   E12000002               North West   E06000007
#> 2657      England   E12000002               North West   E06000008
#> 2658      England   E12000002               North West   E06000008
#> 2659      England   E12000002               North West   E06000008
#> 2660      England   E12000002               North West   E06000008
#> 2661      England   E12000002               North West   E06000009
#> 2662      England   E12000002               North West   E06000009
#> 2663      England   E12000002               North West   E06000009
#> 2664      England   E12000002               North West   E06000009
#> 2665      England   E12000002               North West   E06000049
#> 2666      England   E12000002               North West   E06000049
#> 2667      England   E12000002               North West   E06000049
#> 2668      England   E12000002               North West   E06000049
#> 2669      England   E12000002               North West   E06000050
#> 2670      England   E12000002               North West   E06000050
#> 2671      England   E12000002               North West   E06000050
#> 2672      England   E12000002               North West   E06000050
#> 2673      England   E12000002               North West   E06000063
#> 2674      England   E12000002               North West   E06000063
#> 2675      England   E12000002               North West   E06000063
#> 2676      England   E12000002               North West   E06000063
#> 2677      England   E12000002               North West   E06000064
#> 2678      England   E12000002               North West   E06000064
#> 2679      England   E12000002               North West   E06000064
#> 2680      England   E12000002               North West   E06000064
#> 2681      England   E12000002               North West   E08000001
#> 2682      England   E12000002               North West   E08000001
#> 2683      England   E12000002               North West   E08000001
#> 2684      England   E12000002               North West   E08000001
#> 2685      England   E12000002               North West   E08000002
#> 2686      England   E12000002               North West   E08000002
#> 2687      England   E12000002               North West   E08000002
#> 2688      England   E12000002               North West   E08000002
#> 2689      England   E12000002               North West   E08000003
#> 2690      England   E12000002               North West   E08000003
#> 2691      England   E12000002               North West   E08000003
#> 2692      England   E12000002               North West   E08000003
#> 2693      England   E12000002               North West   E08000004
#> 2694      England   E12000002               North West   E08000004
#> 2695      England   E12000002               North West   E08000004
#> 2696      England   E12000002               North West   E08000004
#> 2697      England   E12000002               North West   E08000005
#> 2698      England   E12000002               North West   E08000005
#> 2699      England   E12000002               North West   E08000005
#> 2700      England   E12000002               North West   E08000005
#> 2701      England   E12000002               North West   E08000006
#> 2702      England   E12000002               North West   E08000006
#> 2703      England   E12000002               North West   E08000006
#> 2704      England   E12000002               North West   E08000006
#> 2705      England   E12000002               North West   E08000007
#> 2706      England   E12000002               North West   E08000007
#> 2707      England   E12000002               North West   E08000007
#> 2708      England   E12000002               North West   E08000007
#> 2709      England   E12000002               North West   E08000008
#> 2710      England   E12000002               North West   E08000008
#> 2711      England   E12000002               North West   E08000008
#> 2712      England   E12000002               North West   E08000008
#> 2713      England   E12000002               North West   E08000009
#> 2714      England   E12000002               North West   E08000009
#> 2715      England   E12000002               North West   E08000009
#> 2716      England   E12000002               North West   E08000009
#> 2717      England   E12000002               North West   E08000010
#> 2718      England   E12000002               North West   E08000010
#> 2719      England   E12000002               North West   E08000010
#> 2720      England   E12000002               North West   E08000010
#> 2721      England   E12000002               North West   E08000011
#> 2722      England   E12000002               North West   E08000011
#> 2723      England   E12000002               North West   E08000011
#> 2724      England   E12000002               North West   E08000011
#> 2725      England   E12000002               North West   E08000012
#> 2726      England   E12000002               North West   E08000012
#> 2727      England   E12000002               North West   E08000012
#> 2728      England   E12000002               North West   E08000012
#> 2729      England   E12000002               North West   E08000013
#> 2730      England   E12000002               North West   E08000013
#> 2731      England   E12000002               North West   E08000013
#> 2732      England   E12000002               North West   E08000013
#> 2733      England   E12000002               North West   E08000014
#> 2734      England   E12000002               North West   E08000014
#> 2735      England   E12000002               North West   E08000014
#> 2736      England   E12000002               North West   E08000014
#> 2737      England   E12000002               North West   E08000015
#> 2738      England   E12000002               North West   E08000015
#> 2739      England   E12000002               North West   E08000015
#> 2740      England   E12000002               North West   E08000015
#> 2741      England   E12000002               North West   E10000017
#> 2742      England   E12000002               North West   E10000017
#> 2743      England   E12000002               North West   E10000017
#> 2744      England   E12000002               North West   E10000017
#> 2745      England   E12000003 Yorkshire and The Humber        <NA>
#> 2746      England   E12000003 Yorkshire and The Humber        <NA>
#> 2747      England   E12000003 Yorkshire and The Humber        <NA>
#> 2748      England   E12000003 Yorkshire and The Humber        <NA>
#> 2749      England   E12000003 Yorkshire and The Humber   E06000010
#> 2750      England   E12000003 Yorkshire and The Humber   E06000010
#> 2751      England   E12000003 Yorkshire and The Humber   E06000010
#> 2752      England   E12000003 Yorkshire and The Humber   E06000010
#> 2753      England   E12000003 Yorkshire and The Humber   E06000011
#> 2754      England   E12000003 Yorkshire and The Humber   E06000011
#> 2755      England   E12000003 Yorkshire and The Humber   E06000011
#> 2756      England   E12000003 Yorkshire and The Humber   E06000011
#> 2757      England   E12000003 Yorkshire and The Humber   E06000012
#> 2758      England   E12000003 Yorkshire and The Humber   E06000012
#> 2759      England   E12000003 Yorkshire and The Humber   E06000012
#> 2760      England   E12000003 Yorkshire and The Humber   E06000012
#> 2761      England   E12000003 Yorkshire and The Humber   E06000013
#> 2762      England   E12000003 Yorkshire and The Humber   E06000013
#> 2763      England   E12000003 Yorkshire and The Humber   E06000013
#> 2764      England   E12000003 Yorkshire and The Humber   E06000013
#> 2765      England   E12000003 Yorkshire and The Humber   E06000014
#> 2766      England   E12000003 Yorkshire and The Humber   E06000014
#> 2767      England   E12000003 Yorkshire and The Humber   E06000014
#> 2768      England   E12000003 Yorkshire and The Humber   E06000014
#> 2769      England   E12000003 Yorkshire and The Humber   E06000065
#> 2770      England   E12000003 Yorkshire and The Humber   E06000065
#> 2771      England   E12000003 Yorkshire and The Humber   E06000065
#> 2772      England   E12000003 Yorkshire and The Humber   E06000065
#> 2773      England   E12000003 Yorkshire and The Humber   E08000016
#> 2774      England   E12000003 Yorkshire and The Humber   E08000016
#> 2775      England   E12000003 Yorkshire and The Humber   E08000016
#> 2776      England   E12000003 Yorkshire and The Humber   E08000016
#> 2777      England   E12000003 Yorkshire and The Humber   E08000017
#> 2778      England   E12000003 Yorkshire and The Humber   E08000017
#> 2779      England   E12000003 Yorkshire and The Humber   E08000017
#> 2780      England   E12000003 Yorkshire and The Humber   E08000017
#> 2781      England   E12000003 Yorkshire and The Humber   E08000018
#> 2782      England   E12000003 Yorkshire and The Humber   E08000018
#> 2783      England   E12000003 Yorkshire and The Humber   E08000018
#> 2784      England   E12000003 Yorkshire and The Humber   E08000018
#> 2785      England   E12000003 Yorkshire and The Humber   E08000019
#> 2786      England   E12000003 Yorkshire and The Humber   E08000019
#> 2787      England   E12000003 Yorkshire and The Humber   E08000019
#> 2788      England   E12000003 Yorkshire and The Humber   E08000019
#> 2789      England   E12000003 Yorkshire and The Humber   E08000032
#> 2790      England   E12000003 Yorkshire and The Humber   E08000032
#> 2791      England   E12000003 Yorkshire and The Humber   E08000032
#> 2792      England   E12000003 Yorkshire and The Humber   E08000032
#> 2793      England   E12000003 Yorkshire and The Humber   E08000033
#> 2794      England   E12000003 Yorkshire and The Humber   E08000033
#> 2795      England   E12000003 Yorkshire and The Humber   E08000033
#> 2796      England   E12000003 Yorkshire and The Humber   E08000033
#> 2797      England   E12000003 Yorkshire and The Humber   E08000034
#> 2798      England   E12000003 Yorkshire and The Humber   E08000034
#> 2799      England   E12000003 Yorkshire and The Humber   E08000034
#> 2800      England   E12000003 Yorkshire and The Humber   E08000034
#> 2801      England   E12000003 Yorkshire and The Humber   E08000035
#> 2802      England   E12000003 Yorkshire and The Humber   E08000035
#> 2803      England   E12000003 Yorkshire and The Humber   E08000035
#> 2804      England   E12000003 Yorkshire and The Humber   E08000035
#> 2805      England   E12000003 Yorkshire and The Humber   E08000036
#> 2806      England   E12000003 Yorkshire and The Humber   E08000036
#> 2807      England   E12000003 Yorkshire and The Humber   E08000036
#> 2808      England   E12000003 Yorkshire and The Humber   E08000036
#> 2809      England   E12000004            East Midlands        <NA>
#> 2810      England   E12000004            East Midlands        <NA>
#> 2811      England   E12000004            East Midlands        <NA>
#> 2812      England   E12000004            East Midlands        <NA>
#> 2813      England   E12000004            East Midlands   E06000015
#> 2814      England   E12000004            East Midlands   E06000015
#> 2815      England   E12000004            East Midlands   E06000015
#> 2816      England   E12000004            East Midlands   E06000015
#> 2817      England   E12000004            East Midlands   E06000016
#> 2818      England   E12000004            East Midlands   E06000016
#> 2819      England   E12000004            East Midlands   E06000016
#> 2820      England   E12000004            East Midlands   E06000016
#> 2821      England   E12000004            East Midlands   E06000017
#> 2822      England   E12000004            East Midlands   E06000017
#> 2823      England   E12000004            East Midlands   E06000017
#> 2824      England   E12000004            East Midlands   E06000018
#> 2825      England   E12000004            East Midlands   E06000018
#> 2826      England   E12000004            East Midlands   E06000018
#> 2827      England   E12000004            East Midlands   E06000018
#> 2828      England   E12000004            East Midlands   E06000061
#> 2829      England   E12000004            East Midlands   E06000061
#> 2830      England   E12000004            East Midlands   E06000061
#> 2831      England   E12000004            East Midlands   E06000061
#> 2832      England   E12000004            East Midlands   E06000062
#> 2833      England   E12000004            East Midlands   E06000062
#> 2834      England   E12000004            East Midlands   E06000062
#> 2835      England   E12000004            East Midlands   E06000062
#> 2836      England   E12000004            East Midlands   E10000007
#> 2837      England   E12000004            East Midlands   E10000007
#> 2838      England   E12000004            East Midlands   E10000007
#> 2839      England   E12000004            East Midlands   E10000007
#> 2840      England   E12000004            East Midlands   E10000018
#> 2841      England   E12000004            East Midlands   E10000018
#> 2842      England   E12000004            East Midlands   E10000018
#> 2843      England   E12000004            East Midlands   E10000018
#> 2844      England   E12000004            East Midlands   E10000019
#> 2845      England   E12000004            East Midlands   E10000019
#> 2846      England   E12000004            East Midlands   E10000019
#> 2847      England   E12000004            East Midlands   E10000019
#> 2848      England   E12000004            East Midlands   E10000024
#> 2849      England   E12000004            East Midlands   E10000024
#> 2850      England   E12000004            East Midlands   E10000024
#> 2851      England   E12000004            East Midlands   E10000024
#> 2852      England   E12000005            West Midlands        <NA>
#> 2853      England   E12000005            West Midlands        <NA>
#> 2854      England   E12000005            West Midlands        <NA>
#> 2855      England   E12000005            West Midlands        <NA>
#> 2856      England   E12000005            West Midlands   E06000019
#> 2857      England   E12000005            West Midlands   E06000019
#> 2858      England   E12000005            West Midlands   E06000019
#> 2859      England   E12000005            West Midlands   E06000019
#> 2860      England   E12000005            West Midlands   E06000020
#> 2861      England   E12000005            West Midlands   E06000020
#> 2862      England   E12000005            West Midlands   E06000020
#> 2863      England   E12000005            West Midlands   E06000020
#> 2864      England   E12000005            West Midlands   E06000021
#> 2865      England   E12000005            West Midlands   E06000021
#> 2866      England   E12000005            West Midlands   E06000021
#> 2867      England   E12000005            West Midlands   E06000021
#> 2868      England   E12000005            West Midlands   E06000051
#> 2869      England   E12000005            West Midlands   E06000051
#> 2870      England   E12000005            West Midlands   E06000051
#> 2871      England   E12000005            West Midlands   E06000051
#> 2872      England   E12000005            West Midlands   E08000025
#> 2873      England   E12000005            West Midlands   E08000025
#> 2874      England   E12000005            West Midlands   E08000025
#> 2875      England   E12000005            West Midlands   E08000025
#> 2876      England   E12000005            West Midlands   E08000026
#> 2877      England   E12000005            West Midlands   E08000026
#> 2878      England   E12000005            West Midlands   E08000026
#> 2879      England   E12000005            West Midlands   E08000026
#> 2880      England   E12000005            West Midlands   E08000027
#> 2881      England   E12000005            West Midlands   E08000027
#> 2882      England   E12000005            West Midlands   E08000027
#> 2883      England   E12000005            West Midlands   E08000027
#> 2884      England   E12000005            West Midlands   E08000028
#> 2885      England   E12000005            West Midlands   E08000028
#> 2886      England   E12000005            West Midlands   E08000028
#> 2887      England   E12000005            West Midlands   E08000028
#> 2888      England   E12000005            West Midlands   E08000029
#> 2889      England   E12000005            West Midlands   E08000029
#> 2890      England   E12000005            West Midlands   E08000029
#> 2891      England   E12000005            West Midlands   E08000029
#> 2892      England   E12000005            West Midlands   E08000030
#> 2893      England   E12000005            West Midlands   E08000030
#> 2894      England   E12000005            West Midlands   E08000030
#> 2895      England   E12000005            West Midlands   E08000030
#> 2896      England   E12000005            West Midlands   E08000031
#> 2897      England   E12000005            West Midlands   E08000031
#> 2898      England   E12000005            West Midlands   E08000031
#> 2899      England   E12000005            West Midlands   E08000031
#> 2900      England   E12000005            West Midlands   E10000028
#> 2901      England   E12000005            West Midlands   E10000028
#> 2902      England   E12000005            West Midlands   E10000028
#> 2903      England   E12000005            West Midlands   E10000028
#> 2904      England   E12000005            West Midlands   E10000031
#> 2905      England   E12000005            West Midlands   E10000031
#> 2906      England   E12000005            West Midlands   E10000031
#> 2907      England   E12000005            West Midlands   E10000031
#> 2908      England   E12000005            West Midlands   E10000034
#> 2909      England   E12000005            West Midlands   E10000034
#> 2910      England   E12000005            West Midlands   E10000034
#> 2911      England   E12000005            West Midlands   E10000034
#> 2912      England   E12000006          East of England        <NA>
#> 2913      England   E12000006          East of England        <NA>
#> 2914      England   E12000006          East of England        <NA>
#> 2915      England   E12000006          East of England        <NA>
#> 2916      England   E12000006          East of England   E06000031
#> 2917      England   E12000006          East of England   E06000031
#> 2918      England   E12000006          East of England   E06000031
#> 2919      England   E12000006          East of England   E06000031
#> 2920      England   E12000006          East of England   E06000032
#> 2921      England   E12000006          East of England   E06000032
#> 2922      England   E12000006          East of England   E06000032
#> 2923      England   E12000006          East of England   E06000032
#> 2924      England   E12000006          East of England   E06000033
#> 2925      England   E12000006          East of England   E06000033
#> 2926      England   E12000006          East of England   E06000033
#> 2927      England   E12000006          East of England   E06000033
#> 2928      England   E12000006          East of England   E06000034
#> 2929      England   E12000006          East of England   E06000034
#> 2930      England   E12000006          East of England   E06000034
#> 2931      England   E12000006          East of England   E06000034
#> 2932      England   E12000006          East of England   E06000055
#> 2933      England   E12000006          East of England   E06000055
#> 2934      England   E12000006          East of England   E06000055
#> 2935      England   E12000006          East of England   E06000055
#> 2936      England   E12000006          East of England   E06000056
#> 2937      England   E12000006          East of England   E06000056
#> 2938      England   E12000006          East of England   E06000056
#> 2939      England   E12000006          East of England   E06000056
#> 2940      England   E12000006          East of England   E10000003
#> 2941      England   E12000006          East of England   E10000003
#> 2942      England   E12000006          East of England   E10000003
#> 2943      England   E12000006          East of England   E10000003
#> 2944      England   E12000006          East of England   E10000012
#> 2945      England   E12000006          East of England   E10000012
#> 2946      England   E12000006          East of England   E10000012
#> 2947      England   E12000006          East of England   E10000012
#> 2948      England   E12000006          East of England   E10000015
#> 2949      England   E12000006          East of England   E10000015
#> 2950      England   E12000006          East of England   E10000015
#> 2951      England   E12000006          East of England   E10000015
#> 2952      England   E12000006          East of England   E10000020
#> 2953      England   E12000006          East of England   E10000020
#> 2954      England   E12000006          East of England   E10000020
#> 2955      England   E12000006          East of England   E10000020
#> 2956      England   E12000006          East of England   E10000029
#> 2957      England   E12000006          East of England   E10000029
#> 2958      England   E12000006          East of England   E10000029
#> 2959      England   E12000006          East of England   E10000029
#> 2960      England   E12000007                   London        <NA>
#> 2961      England   E12000007                   London        <NA>
#> 2962      England   E12000007                   London        <NA>
#> 2963      England   E12000007                   London        <NA>
#> 2964      England   E12000007                   London   E09000001
#> 2965      England   E12000007                   London   E09000001
#> 2966      England   E12000007                   London   E09000002
#> 2967      England   E12000007                   London   E09000002
#> 2968      England   E12000007                   London   E09000002
#> 2969      England   E12000007                   London   E09000002
#> 2970      England   E12000007                   London   E09000003
#> 2971      England   E12000007                   London   E09000003
#> 2972      England   E12000007                   London   E09000003
#> 2973      England   E12000007                   London   E09000003
#> 2974      England   E12000007                   London   E09000004
#> 2975      England   E12000007                   London   E09000004
#> 2976      England   E12000007                   London   E09000004
#> 2977      England   E12000007                   London   E09000004
#> 2978      England   E12000007                   London   E09000005
#> 2979      England   E12000007                   London   E09000005
#> 2980      England   E12000007                   London   E09000005
#> 2981      England   E12000007                   London   E09000005
#> 2982      England   E12000007                   London   E09000006
#> 2983      England   E12000007                   London   E09000006
#> 2984      England   E12000007                   London   E09000006
#> 2985      England   E12000007                   London   E09000006
#> 2986      England   E12000007                   London   E09000007
#> 2987      England   E12000007                   London   E09000007
#> 2988      England   E12000007                   London   E09000007
#> 2989      England   E12000007                   London   E09000007
#> 2990      England   E12000007                   London   E09000008
#> 2991      England   E12000007                   London   E09000008
#> 2992      England   E12000007                   London   E09000008
#> 2993      England   E12000007                   London   E09000008
#> 2994      England   E12000007                   London   E09000009
#> 2995      England   E12000007                   London   E09000009
#> 2996      England   E12000007                   London   E09000009
#> 2997      England   E12000007                   London   E09000009
#> 2998      England   E12000007                   London   E09000010
#> 2999      England   E12000007                   London   E09000010
#> 3000      England   E12000007                   London   E09000010
#> 3001      England   E12000007                   London   E09000010
#> 3002      England   E12000007                   London   E09000011
#> 3003      England   E12000007                   London   E09000011
#> 3004      England   E12000007                   London   E09000011
#> 3005      England   E12000007                   London   E09000011
#> 3006      England   E12000007                   London   E09000012
#> 3007      England   E12000007                   London   E09000012
#> 3008      England   E12000007                   London   E09000012
#> 3009      England   E12000007                   London   E09000012
#> 3010      England   E12000007                   London   E09000013
#> 3011      England   E12000007                   London   E09000013
#> 3012      England   E12000007                   London   E09000013
#> 3013      England   E12000007                   London   E09000013
#> 3014      England   E12000007                   London   E09000014
#> 3015      England   E12000007                   London   E09000014
#> 3016      England   E12000007                   London   E09000014
#> 3017      England   E12000007                   London   E09000014
#> 3018      England   E12000007                   London   E09000015
#> 3019      England   E12000007                   London   E09000015
#> 3020      England   E12000007                   London   E09000015
#> 3021      England   E12000007                   London   E09000015
#> 3022      England   E12000007                   London   E09000016
#> 3023      England   E12000007                   London   E09000016
#> 3024      England   E12000007                   London   E09000016
#> 3025      England   E12000007                   London   E09000016
#> 3026      England   E12000007                   London   E09000017
#> 3027      England   E12000007                   London   E09000017
#> 3028      England   E12000007                   London   E09000017
#> 3029      England   E12000007                   London   E09000017
#> 3030      England   E12000007                   London   E09000018
#> 3031      England   E12000007                   London   E09000018
#> 3032      England   E12000007                   London   E09000018
#> 3033      England   E12000007                   London   E09000018
#> 3034      England   E12000007                   London   E09000019
#> 3035      England   E12000007                   London   E09000019
#> 3036      England   E12000007                   London   E09000019
#> 3037      England   E12000007                   London   E09000019
#> 3038      England   E12000007                   London   E09000020
#> 3039      England   E12000007                   London   E09000020
#> 3040      England   E12000007                   London   E09000020
#> 3041      England   E12000007                   London   E09000020
#> 3042      England   E12000007                   London   E09000021
#> 3043      England   E12000007                   London   E09000021
#> 3044      England   E12000007                   London   E09000021
#> 3045      England   E12000007                   London   E09000021
#> 3046      England   E12000007                   London   E09000022
#> 3047      England   E12000007                   London   E09000022
#> 3048      England   E12000007                   London   E09000022
#> 3049      England   E12000007                   London   E09000022
#> 3050      England   E12000007                   London   E09000023
#> 3051      England   E12000007                   London   E09000023
#> 3052      England   E12000007                   London   E09000023
#> 3053      England   E12000007                   London   E09000023
#> 3054      England   E12000007                   London   E09000024
#> 3055      England   E12000007                   London   E09000024
#> 3056      England   E12000007                   London   E09000024
#> 3057      England   E12000007                   London   E09000024
#> 3058      England   E12000007                   London   E09000025
#> 3059      England   E12000007                   London   E09000025
#> 3060      England   E12000007                   London   E09000025
#> 3061      England   E12000007                   London   E09000025
#> 3062      England   E12000007                   London   E09000026
#> 3063      England   E12000007                   London   E09000026
#> 3064      England   E12000007                   London   E09000026
#> 3065      England   E12000007                   London   E09000026
#> 3066      England   E12000007                   London   E09000027
#> 3067      England   E12000007                   London   E09000027
#> 3068      England   E12000007                   London   E09000027
#> 3069      England   E12000007                   London   E09000027
#> 3070      England   E12000007                   London   E09000028
#> 3071      England   E12000007                   London   E09000028
#> 3072      England   E12000007                   London   E09000028
#> 3073      England   E12000007                   London   E09000028
#> 3074      England   E12000007                   London   E09000029
#> 3075      England   E12000007                   London   E09000029
#> 3076      England   E12000007                   London   E09000029
#> 3077      England   E12000007                   London   E09000029
#> 3078      England   E12000007                   London   E09000030
#> 3079      England   E12000007                   London   E09000030
#> 3080      England   E12000007                   London   E09000030
#> 3081      England   E12000007                   London   E09000030
#> 3082      England   E12000007                   London   E09000031
#> 3083      England   E12000007                   London   E09000031
#> 3084      England   E12000007                   London   E09000031
#> 3085      England   E12000007                   London   E09000031
#> 3086      England   E12000007                   London   E09000032
#> 3087      England   E12000007                   London   E09000032
#> 3088      England   E12000007                   London   E09000032
#> 3089      England   E12000007                   London   E09000032
#> 3090      England   E12000007                   London   E09000033
#> 3091      England   E12000007                   London   E09000033
#> 3092      England   E12000007                   London   E09000033
#> 3093      England   E12000007                   London   E09000033
#> 3094      England   E12000008               South East        <NA>
#> 3095      England   E12000008               South East        <NA>
#> 3096      England   E12000008               South East        <NA>
#> 3097      England   E12000008               South East        <NA>
#> 3098      England   E12000008               South East   E06000035
#> 3099      England   E12000008               South East   E06000035
#> 3100      England   E12000008               South East   E06000035
#> 3101      England   E12000008               South East   E06000035
#> 3102      England   E12000008               South East   E06000036
#> 3103      England   E12000008               South East   E06000036
#> 3104      England   E12000008               South East   E06000036
#> 3105      England   E12000008               South East   E06000036
#> 3106      England   E12000008               South East   E06000037
#> 3107      England   E12000008               South East   E06000037
#> 3108      England   E12000008               South East   E06000037
#> 3109      England   E12000008               South East   E06000037
#> 3110      England   E12000008               South East   E06000038
#> 3111      England   E12000008               South East   E06000038
#> 3112      England   E12000008               South East   E06000038
#> 3113      England   E12000008               South East   E06000038
#> 3114      England   E12000008               South East   E06000039
#> 3115      England   E12000008               South East   E06000039
#> 3116      England   E12000008               South East   E06000039
#> 3117      England   E12000008               South East   E06000039
#> 3118      England   E12000008               South East   E06000040
#> 3119      England   E12000008               South East   E06000040
#> 3120      England   E12000008               South East   E06000040
#> 3121      England   E12000008               South East   E06000040
#> 3122      England   E12000008               South East   E06000041
#> 3123      England   E12000008               South East   E06000041
#> 3124      England   E12000008               South East   E06000041
#> 3125      England   E12000008               South East   E06000041
#> 3126      England   E12000008               South East   E06000042
#> 3127      England   E12000008               South East   E06000042
#> 3128      England   E12000008               South East   E06000042
#> 3129      England   E12000008               South East   E06000042
#> 3130      England   E12000008               South East   E06000043
#> 3131      England   E12000008               South East   E06000043
#> 3132      England   E12000008               South East   E06000043
#> 3133      England   E12000008               South East   E06000043
#> 3134      England   E12000008               South East   E06000044
#> 3135      England   E12000008               South East   E06000044
#> 3136      England   E12000008               South East   E06000044
#> 3137      England   E12000008               South East   E06000044
#> 3138      England   E12000008               South East   E06000045
#> 3139      England   E12000008               South East   E06000045
#> 3140      England   E12000008               South East   E06000045
#> 3141      England   E12000008               South East   E06000045
#> 3142      England   E12000008               South East   E06000046
#> 3143      England   E12000008               South East   E06000046
#> 3144      England   E12000008               South East   E06000046
#> 3145      England   E12000008               South East   E06000046
#> 3146      England   E12000008               South East   E06000060
#> 3147      England   E12000008               South East   E06000060
#> 3148      England   E12000008               South East   E06000060
#> 3149      England   E12000008               South East   E06000060
#> 3150      England   E12000008               South East   E10000011
#> 3151      England   E12000008               South East   E10000011
#> 3152      England   E12000008               South East   E10000011
#> 3153      England   E12000008               South East   E10000011
#> 3154      England   E12000008               South East   E10000014
#> 3155      England   E12000008               South East   E10000014
#> 3156      England   E12000008               South East   E10000014
#> 3157      England   E12000008               South East   E10000014
#> 3158      England   E12000008               South East   E10000016
#> 3159      England   E12000008               South East   E10000016
#> 3160      England   E12000008               South East   E10000016
#> 3161      England   E12000008               South East   E10000016
#> 3162      England   E12000008               South East   E10000025
#> 3163      England   E12000008               South East   E10000025
#> 3164      England   E12000008               South East   E10000025
#> 3165      England   E12000008               South East   E10000025
#> 3166      England   E12000008               South East   E10000030
#> 3167      England   E12000008               South East   E10000030
#> 3168      England   E12000008               South East   E10000030
#> 3169      England   E12000008               South East   E10000030
#> 3170      England   E12000008               South East   E10000032
#> 3171      England   E12000008               South East   E10000032
#> 3172      England   E12000008               South East   E10000032
#> 3173      England   E12000008               South East   E10000032
#> 3174      England   E12000009               South West        <NA>
#> 3175      England   E12000009               South West        <NA>
#> 3176      England   E12000009               South West        <NA>
#> 3177      England   E12000009               South West        <NA>
#> 3178      England   E12000009               South West   E06000022
#> 3179      England   E12000009               South West   E06000022
#> 3180      England   E12000009               South West   E06000022
#> 3181      England   E12000009               South West   E06000022
#> 3182      England   E12000009               South West   E06000023
#> 3183      England   E12000009               South West   E06000023
#> 3184      England   E12000009               South West   E06000023
#> 3185      England   E12000009               South West   E06000023
#> 3186      England   E12000009               South West   E06000024
#> 3187      England   E12000009               South West   E06000024
#> 3188      England   E12000009               South West   E06000024
#> 3189      England   E12000009               South West   E06000024
#> 3190      England   E12000009               South West   E06000025
#> 3191      England   E12000009               South West   E06000025
#> 3192      England   E12000009               South West   E06000025
#> 3193      England   E12000009               South West   E06000025
#> 3194      England   E12000009               South West   E06000026
#> 3195      England   E12000009               South West   E06000026
#> 3196      England   E12000009               South West   E06000026
#> 3197      England   E12000009               South West   E06000026
#> 3198      England   E12000009               South West   E06000027
#> 3199      England   E12000009               South West   E06000027
#> 3200      England   E12000009               South West   E06000027
#> 3201      England   E12000009               South West   E06000027
#> 3202      England   E12000009               South West   E06000030
#> 3203      England   E12000009               South West   E06000030
#> 3204      England   E12000009               South West   E06000030
#> 3205      England   E12000009               South West   E06000030
#> 3206      England   E12000009               South West   E06000052
#> 3207      England   E12000009               South West   E06000052
#> 3208      England   E12000009               South West   E06000052
#> 3209      England   E12000009               South West   E06000052
#> 3210      England   E12000009               South West   E06000053
#> 3211      England   E12000009               South West   E06000053
#> 3212      England   E12000009               South West   E06000054
#> 3213      England   E12000009               South West   E06000054
#> 3214      England   E12000009               South West   E06000054
#> 3215      England   E12000009               South West   E06000054
#> 3216      England   E12000009               South West   E06000058
#> 3217      England   E12000009               South West   E06000058
#> 3218      England   E12000009               South West   E06000058
#> 3219      England   E12000009               South West   E06000058
#> 3220      England   E12000009               South West   E06000059
#> 3221      England   E12000009               South West   E06000059
#> 3222      England   E12000009               South West   E06000059
#> 3223      England   E12000009               South West   E06000059
#> 3224      England   E12000009               South West   E06000066
#> 3225      England   E12000009               South West   E06000066
#> 3226      England   E12000009               South West   E06000066
#> 3227      England   E12000009               South West   E06000066
#> 3228      England   E12000009               South West   E10000008
#> 3229      England   E12000009               South West   E10000008
#> 3230      England   E12000009               South West   E10000008
#> 3231      England   E12000009               South West   E10000008
#> 3232      England   E12000009               South West   E10000013
#> 3233      England   E12000009               South West   E10000013
#> 3234      England   E12000009               South West   E10000013
#> 3235      England   E12000009               South West   E10000013
#> 3236      England        <NA>                     <NA>        <NA>
#> 3237      England        <NA>                     <NA>        <NA>
#> 3238      England        <NA>                     <NA>        <NA>
#> 3239      England        <NA>                     <NA>        <NA>
#> 3240      England   E12000001               North East        <NA>
#> 3241      England   E12000001               North East        <NA>
#> 3242      England   E12000001               North East        <NA>
#> 3243      England   E12000001               North East        <NA>
#> 3244      England   E12000001               North East   E06000001
#> 3245      England   E12000001               North East   E06000001
#> 3246      England   E12000001               North East   E06000001
#> 3247      England   E12000001               North East   E06000001
#> 3248      England   E12000001               North East   E06000002
#> 3249      England   E12000001               North East   E06000002
#> 3250      England   E12000001               North East   E06000002
#> 3251      England   E12000001               North East   E06000002
#> 3252      England   E12000001               North East   E06000003
#> 3253      England   E12000001               North East   E06000003
#> 3254      England   E12000001               North East   E06000003
#> 3255      England   E12000001               North East   E06000003
#> 3256      England   E12000001               North East   E06000004
#> 3257      England   E12000001               North East   E06000004
#> 3258      England   E12000001               North East   E06000004
#> 3259      England   E12000001               North East   E06000004
#> 3260      England   E12000001               North East   E06000005
#> 3261      England   E12000001               North East   E06000005
#> 3262      England   E12000001               North East   E06000005
#> 3263      England   E12000001               North East   E06000005
#> 3264      England   E12000001               North East   E06000047
#> 3265      England   E12000001               North East   E06000047
#> 3266      England   E12000001               North East   E06000047
#> 3267      England   E12000001               North East   E06000047
#> 3268      England   E12000001               North East   E06000057
#> 3269      England   E12000001               North East   E06000057
#> 3270      England   E12000001               North East   E06000057
#> 3271      England   E12000001               North East   E06000057
#> 3272      England   E12000001               North East   E08000021
#> 3273      England   E12000001               North East   E08000021
#> 3274      England   E12000001               North East   E08000021
#> 3275      England   E12000001               North East   E08000021
#> 3276      England   E12000001               North East   E08000022
#> 3277      England   E12000001               North East   E08000022
#> 3278      England   E12000001               North East   E08000022
#> 3279      England   E12000001               North East   E08000022
#> 3280      England   E12000001               North East   E08000023
#> 3281      England   E12000001               North East   E08000023
#> 3282      England   E12000001               North East   E08000023
#> 3283      England   E12000001               North East   E08000023
#> 3284      England   E12000001               North East   E08000024
#> 3285      England   E12000001               North East   E08000024
#> 3286      England   E12000001               North East   E08000024
#> 3287      England   E12000001               North East   E08000024
#> 3288      England   E12000001               North East   E08000037
#> 3289      England   E12000001               North East   E08000037
#> 3290      England   E12000001               North East   E08000037
#> 3291      England   E12000001               North East   E08000037
#> 3292      England   E12000002               North West        <NA>
#> 3293      England   E12000002               North West        <NA>
#> 3294      England   E12000002               North West        <NA>
#> 3295      England   E12000002               North West        <NA>
#> 3296      England   E12000002               North West   E06000006
#> 3297      England   E12000002               North West   E06000006
#> 3298      England   E12000002               North West   E06000006
#> 3299      England   E12000002               North West   E06000006
#> 3300      England   E12000002               North West   E06000007
#> 3301      England   E12000002               North West   E06000007
#> 3302      England   E12000002               North West   E06000007
#> 3303      England   E12000002               North West   E06000007
#> 3304      England   E12000002               North West   E06000008
#> 3305      England   E12000002               North West   E06000008
#> 3306      England   E12000002               North West   E06000008
#> 3307      England   E12000002               North West   E06000008
#> 3308      England   E12000002               North West   E06000009
#> 3309      England   E12000002               North West   E06000009
#> 3310      England   E12000002               North West   E06000009
#> 3311      England   E12000002               North West   E06000009
#> 3312      England   E12000002               North West   E06000049
#> 3313      England   E12000002               North West   E06000049
#> 3314      England   E12000002               North West   E06000049
#> 3315      England   E12000002               North West   E06000049
#> 3316      England   E12000002               North West   E06000050
#> 3317      England   E12000002               North West   E06000050
#> 3318      England   E12000002               North West   E06000050
#> 3319      England   E12000002               North West   E06000050
#> 3320      England   E12000002               North West   E06000063
#> 3321      England   E12000002               North West   E06000063
#> 3322      England   E12000002               North West   E06000063
#> 3323      England   E12000002               North West   E06000063
#> 3324      England   E12000002               North West   E06000064
#> 3325      England   E12000002               North West   E06000064
#> 3326      England   E12000002               North West   E06000064
#> 3327      England   E12000002               North West   E06000064
#> 3328      England   E12000002               North West   E08000001
#> 3329      England   E12000002               North West   E08000001
#> 3330      England   E12000002               North West   E08000001
#> 3331      England   E12000002               North West   E08000001
#> 3332      England   E12000002               North West   E08000002
#> 3333      England   E12000002               North West   E08000002
#> 3334      England   E12000002               North West   E08000002
#> 3335      England   E12000002               North West   E08000002
#> 3336      England   E12000002               North West   E08000003
#> 3337      England   E12000002               North West   E08000003
#> 3338      England   E12000002               North West   E08000003
#> 3339      England   E12000002               North West   E08000003
#> 3340      England   E12000002               North West   E08000004
#> 3341      England   E12000002               North West   E08000004
#> 3342      England   E12000002               North West   E08000004
#> 3343      England   E12000002               North West   E08000004
#> 3344      England   E12000002               North West   E08000005
#> 3345      England   E12000002               North West   E08000005
#> 3346      England   E12000002               North West   E08000005
#> 3347      England   E12000002               North West   E08000005
#> 3348      England   E12000002               North West   E08000006
#> 3349      England   E12000002               North West   E08000006
#> 3350      England   E12000002               North West   E08000006
#> 3351      England   E12000002               North West   E08000006
#> 3352      England   E12000002               North West   E08000007
#> 3353      England   E12000002               North West   E08000007
#> 3354      England   E12000002               North West   E08000007
#> 3355      England   E12000002               North West   E08000007
#> 3356      England   E12000002               North West   E08000008
#> 3357      England   E12000002               North West   E08000008
#> 3358      England   E12000002               North West   E08000008
#> 3359      England   E12000002               North West   E08000008
#> 3360      England   E12000002               North West   E08000009
#> 3361      England   E12000002               North West   E08000009
#> 3362      England   E12000002               North West   E08000009
#> 3363      England   E12000002               North West   E08000009
#> 3364      England   E12000002               North West   E08000010
#> 3365      England   E12000002               North West   E08000010
#> 3366      England   E12000002               North West   E08000010
#> 3367      England   E12000002               North West   E08000010
#> 3368      England   E12000002               North West   E08000011
#> 3369      England   E12000002               North West   E08000011
#> 3370      England   E12000002               North West   E08000011
#> 3371      England   E12000002               North West   E08000011
#> 3372      England   E12000002               North West   E08000012
#> 3373      England   E12000002               North West   E08000012
#> 3374      England   E12000002               North West   E08000012
#> 3375      England   E12000002               North West   E08000012
#> 3376      England   E12000002               North West   E08000013
#> 3377      England   E12000002               North West   E08000013
#> 3378      England   E12000002               North West   E08000013
#> 3379      England   E12000002               North West   E08000013
#> 3380      England   E12000002               North West   E08000014
#> 3381      England   E12000002               North West   E08000014
#> 3382      England   E12000002               North West   E08000014
#> 3383      England   E12000002               North West   E08000014
#> 3384      England   E12000002               North West   E08000015
#> 3385      England   E12000002               North West   E08000015
#> 3386      England   E12000002               North West   E08000015
#> 3387      England   E12000002               North West   E08000015
#> 3388      England   E12000002               North West   E10000017
#> 3389      England   E12000002               North West   E10000017
#> 3390      England   E12000002               North West   E10000017
#> 3391      England   E12000002               North West   E10000017
#> 3392      England   E12000003 Yorkshire and The Humber        <NA>
#> 3393      England   E12000003 Yorkshire and The Humber        <NA>
#> 3394      England   E12000003 Yorkshire and The Humber        <NA>
#> 3395      England   E12000003 Yorkshire and The Humber        <NA>
#> 3396      England   E12000003 Yorkshire and The Humber   E06000010
#> 3397      England   E12000003 Yorkshire and The Humber   E06000010
#> 3398      England   E12000003 Yorkshire and The Humber   E06000010
#> 3399      England   E12000003 Yorkshire and The Humber   E06000010
#> 3400      England   E12000003 Yorkshire and The Humber   E06000011
#> 3401      England   E12000003 Yorkshire and The Humber   E06000011
#> 3402      England   E12000003 Yorkshire and The Humber   E06000011
#> 3403      England   E12000003 Yorkshire and The Humber   E06000011
#> 3404      England   E12000003 Yorkshire and The Humber   E06000012
#> 3405      England   E12000003 Yorkshire and The Humber   E06000012
#> 3406      England   E12000003 Yorkshire and The Humber   E06000012
#> 3407      England   E12000003 Yorkshire and The Humber   E06000012
#> 3408      England   E12000003 Yorkshire and The Humber   E06000013
#> 3409      England   E12000003 Yorkshire and The Humber   E06000013
#> 3410      England   E12000003 Yorkshire and The Humber   E06000013
#> 3411      England   E12000003 Yorkshire and The Humber   E06000013
#> 3412      England   E12000003 Yorkshire and The Humber   E06000014
#> 3413      England   E12000003 Yorkshire and The Humber   E06000014
#> 3414      England   E12000003 Yorkshire and The Humber   E06000014
#> 3415      England   E12000003 Yorkshire and The Humber   E06000014
#> 3416      England   E12000003 Yorkshire and The Humber   E06000065
#> 3417      England   E12000003 Yorkshire and The Humber   E06000065
#> 3418      England   E12000003 Yorkshire and The Humber   E06000065
#> 3419      England   E12000003 Yorkshire and The Humber   E06000065
#> 3420      England   E12000003 Yorkshire and The Humber   E08000016
#> 3421      England   E12000003 Yorkshire and The Humber   E08000016
#> 3422      England   E12000003 Yorkshire and The Humber   E08000016
#> 3423      England   E12000003 Yorkshire and The Humber   E08000016
#> 3424      England   E12000003 Yorkshire and The Humber   E08000017
#> 3425      England   E12000003 Yorkshire and The Humber   E08000017
#> 3426      England   E12000003 Yorkshire and The Humber   E08000017
#> 3427      England   E12000003 Yorkshire and The Humber   E08000017
#> 3428      England   E12000003 Yorkshire and The Humber   E08000018
#> 3429      England   E12000003 Yorkshire and The Humber   E08000018
#> 3430      England   E12000003 Yorkshire and The Humber   E08000018
#> 3431      England   E12000003 Yorkshire and The Humber   E08000018
#> 3432      England   E12000003 Yorkshire and The Humber   E08000019
#> 3433      England   E12000003 Yorkshire and The Humber   E08000019
#> 3434      England   E12000003 Yorkshire and The Humber   E08000019
#> 3435      England   E12000003 Yorkshire and The Humber   E08000019
#> 3436      England   E12000003 Yorkshire and The Humber   E08000032
#> 3437      England   E12000003 Yorkshire and The Humber   E08000032
#> 3438      England   E12000003 Yorkshire and The Humber   E08000032
#> 3439      England   E12000003 Yorkshire and The Humber   E08000032
#> 3440      England   E12000003 Yorkshire and The Humber   E08000033
#> 3441      England   E12000003 Yorkshire and The Humber   E08000033
#> 3442      England   E12000003 Yorkshire and The Humber   E08000033
#> 3443      England   E12000003 Yorkshire and The Humber   E08000033
#> 3444      England   E12000003 Yorkshire and The Humber   E08000034
#> 3445      England   E12000003 Yorkshire and The Humber   E08000034
#> 3446      England   E12000003 Yorkshire and The Humber   E08000034
#> 3447      England   E12000003 Yorkshire and The Humber   E08000034
#> 3448      England   E12000003 Yorkshire and The Humber   E08000035
#> 3449      England   E12000003 Yorkshire and The Humber   E08000035
#> 3450      England   E12000003 Yorkshire and The Humber   E08000035
#> 3451      England   E12000003 Yorkshire and The Humber   E08000035
#> 3452      England   E12000003 Yorkshire and The Humber   E08000036
#> 3453      England   E12000003 Yorkshire and The Humber   E08000036
#> 3454      England   E12000003 Yorkshire and The Humber   E08000036
#> 3455      England   E12000003 Yorkshire and The Humber   E08000036
#> 3456      England   E12000004            East Midlands        <NA>
#> 3457      England   E12000004            East Midlands        <NA>
#> 3458      England   E12000004            East Midlands        <NA>
#> 3459      England   E12000004            East Midlands        <NA>
#> 3460      England   E12000004            East Midlands   E06000015
#> 3461      England   E12000004            East Midlands   E06000015
#> 3462      England   E12000004            East Midlands   E06000015
#> 3463      England   E12000004            East Midlands   E06000015
#> 3464      England   E12000004            East Midlands   E06000016
#> 3465      England   E12000004            East Midlands   E06000016
#> 3466      England   E12000004            East Midlands   E06000016
#> 3467      England   E12000004            East Midlands   E06000016
#> 3468      England   E12000004            East Midlands   E06000017
#> 3469      England   E12000004            East Midlands   E06000017
#> 3470      England   E12000004            East Midlands   E06000017
#> 3471      England   E12000004            East Midlands   E06000018
#> 3472      England   E12000004            East Midlands   E06000018
#> 3473      England   E12000004            East Midlands   E06000018
#> 3474      England   E12000004            East Midlands   E06000018
#> 3475      England   E12000004            East Midlands   E06000061
#> 3476      England   E12000004            East Midlands   E06000061
#> 3477      England   E12000004            East Midlands   E06000061
#> 3478      England   E12000004            East Midlands   E06000061
#> 3479      England   E12000004            East Midlands   E06000062
#> 3480      England   E12000004            East Midlands   E06000062
#> 3481      England   E12000004            East Midlands   E06000062
#> 3482      England   E12000004            East Midlands   E06000062
#> 3483      England   E12000004            East Midlands   E10000007
#> 3484      England   E12000004            East Midlands   E10000007
#> 3485      England   E12000004            East Midlands   E10000007
#> 3486      England   E12000004            East Midlands   E10000007
#> 3487      England   E12000004            East Midlands   E10000018
#> 3488      England   E12000004            East Midlands   E10000018
#> 3489      England   E12000004            East Midlands   E10000018
#> 3490      England   E12000004            East Midlands   E10000018
#> 3491      England   E12000004            East Midlands   E10000019
#> 3492      England   E12000004            East Midlands   E10000019
#> 3493      England   E12000004            East Midlands   E10000019
#> 3494      England   E12000004            East Midlands   E10000019
#> 3495      England   E12000004            East Midlands   E10000024
#> 3496      England   E12000004            East Midlands   E10000024
#> 3497      England   E12000004            East Midlands   E10000024
#> 3498      England   E12000004            East Midlands   E10000024
#> 3499      England   E12000005            West Midlands        <NA>
#> 3500      England   E12000005            West Midlands        <NA>
#> 3501      England   E12000005            West Midlands        <NA>
#> 3502      England   E12000005            West Midlands        <NA>
#> 3503      England   E12000005            West Midlands   E06000019
#> 3504      England   E12000005            West Midlands   E06000019
#> 3505      England   E12000005            West Midlands   E06000019
#> 3506      England   E12000005            West Midlands   E06000019
#> 3507      England   E12000005            West Midlands   E06000020
#> 3508      England   E12000005            West Midlands   E06000020
#> 3509      England   E12000005            West Midlands   E06000020
#> 3510      England   E12000005            West Midlands   E06000020
#> 3511      England   E12000005            West Midlands   E06000021
#> 3512      England   E12000005            West Midlands   E06000021
#> 3513      England   E12000005            West Midlands   E06000021
#> 3514      England   E12000005            West Midlands   E06000021
#> 3515      England   E12000005            West Midlands   E06000051
#> 3516      England   E12000005            West Midlands   E06000051
#> 3517      England   E12000005            West Midlands   E06000051
#> 3518      England   E12000005            West Midlands   E06000051
#> 3519      England   E12000005            West Midlands   E08000025
#> 3520      England   E12000005            West Midlands   E08000025
#> 3521      England   E12000005            West Midlands   E08000025
#> 3522      England   E12000005            West Midlands   E08000025
#> 3523      England   E12000005            West Midlands   E08000026
#> 3524      England   E12000005            West Midlands   E08000026
#> 3525      England   E12000005            West Midlands   E08000026
#> 3526      England   E12000005            West Midlands   E08000026
#> 3527      England   E12000005            West Midlands   E08000027
#> 3528      England   E12000005            West Midlands   E08000027
#> 3529      England   E12000005            West Midlands   E08000027
#> 3530      England   E12000005            West Midlands   E08000027
#> 3531      England   E12000005            West Midlands   E08000028
#> 3532      England   E12000005            West Midlands   E08000028
#> 3533      England   E12000005            West Midlands   E08000028
#> 3534      England   E12000005            West Midlands   E08000028
#> 3535      England   E12000005            West Midlands   E08000029
#> 3536      England   E12000005            West Midlands   E08000029
#> 3537      England   E12000005            West Midlands   E08000029
#> 3538      England   E12000005            West Midlands   E08000029
#> 3539      England   E12000005            West Midlands   E08000030
#> 3540      England   E12000005            West Midlands   E08000030
#> 3541      England   E12000005            West Midlands   E08000030
#> 3542      England   E12000005            West Midlands   E08000030
#> 3543      England   E12000005            West Midlands   E08000031
#> 3544      England   E12000005            West Midlands   E08000031
#> 3545      England   E12000005            West Midlands   E08000031
#> 3546      England   E12000005            West Midlands   E08000031
#> 3547      England   E12000005            West Midlands   E10000028
#> 3548      England   E12000005            West Midlands   E10000028
#> 3549      England   E12000005            West Midlands   E10000028
#> 3550      England   E12000005            West Midlands   E10000028
#> 3551      England   E12000005            West Midlands   E10000031
#> 3552      England   E12000005            West Midlands   E10000031
#> 3553      England   E12000005            West Midlands   E10000031
#> 3554      England   E12000005            West Midlands   E10000031
#> 3555      England   E12000005            West Midlands   E10000034
#> 3556      England   E12000005            West Midlands   E10000034
#> 3557      England   E12000005            West Midlands   E10000034
#> 3558      England   E12000005            West Midlands   E10000034
#> 3559      England   E12000006          East of England        <NA>
#> 3560      England   E12000006          East of England        <NA>
#> 3561      England   E12000006          East of England        <NA>
#> 3562      England   E12000006          East of England        <NA>
#> 3563      England   E12000006          East of England   E06000031
#> 3564      England   E12000006          East of England   E06000031
#> 3565      England   E12000006          East of England   E06000031
#> 3566      England   E12000006          East of England   E06000031
#> 3567      England   E12000006          East of England   E06000032
#> 3568      England   E12000006          East of England   E06000032
#> 3569      England   E12000006          East of England   E06000032
#> 3570      England   E12000006          East of England   E06000032
#> 3571      England   E12000006          East of England   E06000033
#> 3572      England   E12000006          East of England   E06000033
#> 3573      England   E12000006          East of England   E06000033
#> 3574      England   E12000006          East of England   E06000033
#> 3575      England   E12000006          East of England   E06000034
#> 3576      England   E12000006          East of England   E06000034
#> 3577      England   E12000006          East of England   E06000034
#> 3578      England   E12000006          East of England   E06000034
#> 3579      England   E12000006          East of England   E06000055
#> 3580      England   E12000006          East of England   E06000055
#> 3581      England   E12000006          East of England   E06000055
#> 3582      England   E12000006          East of England   E06000055
#> 3583      England   E12000006          East of England   E06000056
#> 3584      England   E12000006          East of England   E06000056
#> 3585      England   E12000006          East of England   E06000056
#> 3586      England   E12000006          East of England   E06000056
#> 3587      England   E12000006          East of England   E10000003
#> 3588      England   E12000006          East of England   E10000003
#> 3589      England   E12000006          East of England   E10000003
#> 3590      England   E12000006          East of England   E10000003
#> 3591      England   E12000006          East of England   E10000012
#> 3592      England   E12000006          East of England   E10000012
#> 3593      England   E12000006          East of England   E10000012
#> 3594      England   E12000006          East of England   E10000012
#> 3595      England   E12000006          East of England   E10000015
#> 3596      England   E12000006          East of England   E10000015
#> 3597      England   E12000006          East of England   E10000015
#> 3598      England   E12000006          East of England   E10000015
#> 3599      England   E12000006          East of England   E10000020
#> 3600      England   E12000006          East of England   E10000020
#> 3601      England   E12000006          East of England   E10000020
#> 3602      England   E12000006          East of England   E10000020
#> 3603      England   E12000006          East of England   E10000029
#> 3604      England   E12000006          East of England   E10000029
#> 3605      England   E12000006          East of England   E10000029
#> 3606      England   E12000006          East of England   E10000029
#> 3607      England   E12000007                   London        <NA>
#> 3608      England   E12000007                   London        <NA>
#> 3609      England   E12000007                   London        <NA>
#> 3610      England   E12000007                   London        <NA>
#> 3611      England   E12000007                   London   E09000001
#> 3612      England   E12000007                   London   E09000001
#> 3613      England   E12000007                   London   E09000002
#> 3614      England   E12000007                   London   E09000002
#> 3615      England   E12000007                   London   E09000002
#> 3616      England   E12000007                   London   E09000002
#> 3617      England   E12000007                   London   E09000003
#> 3618      England   E12000007                   London   E09000003
#> 3619      England   E12000007                   London   E09000003
#> 3620      England   E12000007                   London   E09000003
#> 3621      England   E12000007                   London   E09000004
#> 3622      England   E12000007                   London   E09000004
#> 3623      England   E12000007                   London   E09000004
#> 3624      England   E12000007                   London   E09000004
#> 3625      England   E12000007                   London   E09000005
#> 3626      England   E12000007                   London   E09000005
#> 3627      England   E12000007                   London   E09000005
#> 3628      England   E12000007                   London   E09000005
#> 3629      England   E12000007                   London   E09000006
#> 3630      England   E12000007                   London   E09000006
#> 3631      England   E12000007                   London   E09000006
#> 3632      England   E12000007                   London   E09000006
#> 3633      England   E12000007                   London   E09000007
#> 3634      England   E12000007                   London   E09000007
#> 3635      England   E12000007                   London   E09000007
#> 3636      England   E12000007                   London   E09000007
#> 3637      England   E12000007                   London   E09000008
#> 3638      England   E12000007                   London   E09000008
#> 3639      England   E12000007                   London   E09000008
#> 3640      England   E12000007                   London   E09000008
#> 3641      England   E12000007                   London   E09000009
#> 3642      England   E12000007                   London   E09000009
#> 3643      England   E12000007                   London   E09000009
#> 3644      England   E12000007                   London   E09000009
#> 3645      England   E12000007                   London   E09000010
#> 3646      England   E12000007                   London   E09000010
#> 3647      England   E12000007                   London   E09000010
#> 3648      England   E12000007                   London   E09000010
#> 3649      England   E12000007                   London   E09000011
#> 3650      England   E12000007                   London   E09000011
#> 3651      England   E12000007                   London   E09000011
#> 3652      England   E12000007                   London   E09000011
#> 3653      England   E12000007                   London   E09000012
#> 3654      England   E12000007                   London   E09000012
#> 3655      England   E12000007                   London   E09000012
#> 3656      England   E12000007                   London   E09000012
#> 3657      England   E12000007                   London   E09000013
#> 3658      England   E12000007                   London   E09000013
#> 3659      England   E12000007                   London   E09000013
#> 3660      England   E12000007                   London   E09000013
#> 3661      England   E12000007                   London   E09000014
#> 3662      England   E12000007                   London   E09000014
#> 3663      England   E12000007                   London   E09000014
#> 3664      England   E12000007                   London   E09000014
#> 3665      England   E12000007                   London   E09000015
#> 3666      England   E12000007                   London   E09000015
#> 3667      England   E12000007                   London   E09000015
#> 3668      England   E12000007                   London   E09000015
#> 3669      England   E12000007                   London   E09000016
#> 3670      England   E12000007                   London   E09000016
#> 3671      England   E12000007                   London   E09000016
#> 3672      England   E12000007                   London   E09000016
#> 3673      England   E12000007                   London   E09000017
#> 3674      England   E12000007                   London   E09000017
#> 3675      England   E12000007                   London   E09000017
#> 3676      England   E12000007                   London   E09000017
#> 3677      England   E12000007                   London   E09000018
#> 3678      England   E12000007                   London   E09000018
#> 3679      England   E12000007                   London   E09000018
#> 3680      England   E12000007                   London   E09000018
#> 3681      England   E12000007                   London   E09000019
#> 3682      England   E12000007                   London   E09000019
#> 3683      England   E12000007                   London   E09000019
#> 3684      England   E12000007                   London   E09000019
#> 3685      England   E12000007                   London   E09000020
#> 3686      England   E12000007                   London   E09000020
#> 3687      England   E12000007                   London   E09000020
#> 3688      England   E12000007                   London   E09000020
#> 3689      England   E12000007                   London   E09000021
#> 3690      England   E12000007                   London   E09000021
#> 3691      England   E12000007                   London   E09000021
#> 3692      England   E12000007                   London   E09000021
#> 3693      England   E12000007                   London   E09000022
#> 3694      England   E12000007                   London   E09000022
#> 3695      England   E12000007                   London   E09000022
#> 3696      England   E12000007                   London   E09000022
#> 3697      England   E12000007                   London   E09000023
#> 3698      England   E12000007                   London   E09000023
#> 3699      England   E12000007                   London   E09000023
#> 3700      England   E12000007                   London   E09000023
#> 3701      England   E12000007                   London   E09000024
#> 3702      England   E12000007                   London   E09000024
#> 3703      England   E12000007                   London   E09000024
#> 3704      England   E12000007                   London   E09000024
#> 3705      England   E12000007                   London   E09000025
#> 3706      England   E12000007                   London   E09000025
#> 3707      England   E12000007                   London   E09000025
#> 3708      England   E12000007                   London   E09000025
#> 3709      England   E12000007                   London   E09000026
#> 3710      England   E12000007                   London   E09000026
#> 3711      England   E12000007                   London   E09000026
#> 3712      England   E12000007                   London   E09000026
#> 3713      England   E12000007                   London   E09000027
#> 3714      England   E12000007                   London   E09000027
#> 3715      England   E12000007                   London   E09000027
#> 3716      England   E12000007                   London   E09000027
#> 3717      England   E12000007                   London   E09000028
#> 3718      England   E12000007                   London   E09000028
#> 3719      England   E12000007                   London   E09000028
#> 3720      England   E12000007                   London   E09000028
#> 3721      England   E12000007                   London   E09000029
#> 3722      England   E12000007                   London   E09000029
#> 3723      England   E12000007                   London   E09000029
#> 3724      England   E12000007                   London   E09000029
#> 3725      England   E12000007                   London   E09000030
#> 3726      England   E12000007                   London   E09000030
#> 3727      England   E12000007                   London   E09000030
#> 3728      England   E12000007                   London   E09000030
#> 3729      England   E12000007                   London   E09000031
#> 3730      England   E12000007                   London   E09000031
#> 3731      England   E12000007                   London   E09000031
#> 3732      England   E12000007                   London   E09000031
#> 3733      England   E12000007                   London   E09000032
#> 3734      England   E12000007                   London   E09000032
#> 3735      England   E12000007                   London   E09000032
#> 3736      England   E12000007                   London   E09000032
#> 3737      England   E12000007                   London   E09000033
#> 3738      England   E12000007                   London   E09000033
#> 3739      England   E12000007                   London   E09000033
#> 3740      England   E12000007                   London   E09000033
#> 3741      England   E12000008               South East        <NA>
#> 3742      England   E12000008               South East        <NA>
#> 3743      England   E12000008               South East        <NA>
#> 3744      England   E12000008               South East        <NA>
#> 3745      England   E12000008               South East   E06000035
#> 3746      England   E12000008               South East   E06000035
#> 3747      England   E12000008               South East   E06000035
#> 3748      England   E12000008               South East   E06000035
#> 3749      England   E12000008               South East   E06000036
#> 3750      England   E12000008               South East   E06000036
#> 3751      England   E12000008               South East   E06000036
#> 3752      England   E12000008               South East   E06000036
#> 3753      England   E12000008               South East   E06000037
#> 3754      England   E12000008               South East   E06000037
#> 3755      England   E12000008               South East   E06000037
#> 3756      England   E12000008               South East   E06000037
#> 3757      England   E12000008               South East   E06000038
#> 3758      England   E12000008               South East   E06000038
#> 3759      England   E12000008               South East   E06000038
#> 3760      England   E12000008               South East   E06000038
#> 3761      England   E12000008               South East   E06000039
#> 3762      England   E12000008               South East   E06000039
#> 3763      England   E12000008               South East   E06000039
#> 3764      England   E12000008               South East   E06000039
#> 3765      England   E12000008               South East   E06000040
#> 3766      England   E12000008               South East   E06000040
#> 3767      England   E12000008               South East   E06000040
#> 3768      England   E12000008               South East   E06000040
#> 3769      England   E12000008               South East   E06000041
#> 3770      England   E12000008               South East   E06000041
#> 3771      England   E12000008               South East   E06000041
#> 3772      England   E12000008               South East   E06000041
#> 3773      England   E12000008               South East   E06000042
#> 3774      England   E12000008               South East   E06000042
#> 3775      England   E12000008               South East   E06000042
#> 3776      England   E12000008               South East   E06000042
#> 3777      England   E12000008               South East   E06000043
#> 3778      England   E12000008               South East   E06000043
#> 3779      England   E12000008               South East   E06000043
#> 3780      England   E12000008               South East   E06000043
#> 3781      England   E12000008               South East   E06000044
#> 3782      England   E12000008               South East   E06000044
#> 3783      England   E12000008               South East   E06000044
#> 3784      England   E12000008               South East   E06000044
#> 3785      England   E12000008               South East   E06000045
#> 3786      England   E12000008               South East   E06000045
#> 3787      England   E12000008               South East   E06000045
#> 3788      England   E12000008               South East   E06000045
#> 3789      England   E12000008               South East   E06000046
#> 3790      England   E12000008               South East   E06000046
#> 3791      England   E12000008               South East   E06000046
#> 3792      England   E12000008               South East   E06000046
#> 3793      England   E12000008               South East   E06000060
#> 3794      England   E12000008               South East   E06000060
#> 3795      England   E12000008               South East   E06000060
#> 3796      England   E12000008               South East   E06000060
#> 3797      England   E12000008               South East   E10000011
#> 3798      England   E12000008               South East   E10000011
#> 3799      England   E12000008               South East   E10000011
#> 3800      England   E12000008               South East   E10000011
#> 3801      England   E12000008               South East   E10000014
#> 3802      England   E12000008               South East   E10000014
#> 3803      England   E12000008               South East   E10000014
#> 3804      England   E12000008               South East   E10000014
#> 3805      England   E12000008               South East   E10000016
#> 3806      England   E12000008               South East   E10000016
#> 3807      England   E12000008               South East   E10000016
#> 3808      England   E12000008               South East   E10000016
#> 3809      England   E12000008               South East   E10000025
#> 3810      England   E12000008               South East   E10000025
#> 3811      England   E12000008               South East   E10000025
#> 3812      England   E12000008               South East   E10000025
#> 3813      England   E12000008               South East   E10000030
#> 3814      England   E12000008               South East   E10000030
#> 3815      England   E12000008               South East   E10000030
#> 3816      England   E12000008               South East   E10000030
#> 3817      England   E12000008               South East   E10000032
#> 3818      England   E12000008               South East   E10000032
#> 3819      England   E12000008               South East   E10000032
#> 3820      England   E12000008               South East   E10000032
#> 3821      England   E12000009               South West        <NA>
#> 3822      England   E12000009               South West        <NA>
#> 3823      England   E12000009               South West        <NA>
#> 3824      England   E12000009               South West        <NA>
#> 3825      England   E12000009               South West   E06000022
#> 3826      England   E12000009               South West   E06000022
#> 3827      England   E12000009               South West   E06000022
#> 3828      England   E12000009               South West   E06000022
#> 3829      England   E12000009               South West   E06000023
#> 3830      England   E12000009               South West   E06000023
#> 3831      England   E12000009               South West   E06000023
#> 3832      England   E12000009               South West   E06000023
#> 3833      England   E12000009               South West   E06000024
#> 3834      England   E12000009               South West   E06000024
#> 3835      England   E12000009               South West   E06000024
#> 3836      England   E12000009               South West   E06000024
#> 3837      England   E12000009               South West   E06000025
#> 3838      England   E12000009               South West   E06000025
#> 3839      England   E12000009               South West   E06000025
#> 3840      England   E12000009               South West   E06000025
#> 3841      England   E12000009               South West   E06000026
#> 3842      England   E12000009               South West   E06000026
#> 3843      England   E12000009               South West   E06000026
#> 3844      England   E12000009               South West   E06000026
#> 3845      England   E12000009               South West   E06000027
#> 3846      England   E12000009               South West   E06000027
#> 3847      England   E12000009               South West   E06000027
#> 3848      England   E12000009               South West   E06000027
#> 3849      England   E12000009               South West   E06000030
#> 3850      England   E12000009               South West   E06000030
#> 3851      England   E12000009               South West   E06000030
#> 3852      England   E12000009               South West   E06000030
#> 3853      England   E12000009               South West   E06000052
#> 3854      England   E12000009               South West   E06000052
#> 3855      England   E12000009               South West   E06000052
#> 3856      England   E12000009               South West   E06000052
#> 3857      England   E12000009               South West   E06000053
#> 3858      England   E12000009               South West   E06000053
#> 3859      England   E12000009               South West   E06000054
#> 3860      England   E12000009               South West   E06000054
#> 3861      England   E12000009               South West   E06000054
#> 3862      England   E12000009               South West   E06000054
#> 3863      England   E12000009               South West   E06000058
#> 3864      England   E12000009               South West   E06000058
#> 3865      England   E12000009               South West   E06000058
#> 3866      England   E12000009               South West   E06000058
#> 3867      England   E12000009               South West   E06000059
#> 3868      England   E12000009               South West   E06000059
#> 3869      England   E12000009               South West   E06000059
#> 3870      England   E12000009               South West   E06000059
#> 3871      England   E12000009               South West   E06000066
#> 3872      England   E12000009               South West   E06000066
#> 3873      England   E12000009               South West   E06000066
#> 3874      England   E12000009               South West   E06000066
#> 3875      England   E12000009               South West   E10000008
#> 3876      England   E12000009               South West   E10000008
#> 3877      England   E12000009               South West   E10000008
#> 3878      England   E12000009               South West   E10000008
#> 3879      England   E12000009               South West   E10000013
#> 3880      England   E12000009               South West   E10000013
#> 3881      England   E12000009               South West   E10000013
#> 3882      England   E12000009               South West   E10000013
#> 3883      England        <NA>                     <NA>        <NA>
#> 3884      England        <NA>                     <NA>        <NA>
#> 3885      England        <NA>                     <NA>        <NA>
#> 3886      England        <NA>                     <NA>        <NA>
#> 3887      England   E12000001               North East        <NA>
#> 3888      England   E12000001               North East        <NA>
#> 3889      England   E12000001               North East        <NA>
#> 3890      England   E12000001               North East        <NA>
#> 3891      England   E12000001               North East   E06000001
#> 3892      England   E12000001               North East   E06000001
#> 3893      England   E12000001               North East   E06000001
#> 3894      England   E12000001               North East   E06000001
#> 3895      England   E12000001               North East   E06000002
#> 3896      England   E12000001               North East   E06000002
#> 3897      England   E12000001               North East   E06000002
#> 3898      England   E12000001               North East   E06000002
#> 3899      England   E12000001               North East   E06000003
#> 3900      England   E12000001               North East   E06000003
#> 3901      England   E12000001               North East   E06000003
#> 3902      England   E12000001               North East   E06000003
#> 3903      England   E12000001               North East   E06000004
#> 3904      England   E12000001               North East   E06000004
#> 3905      England   E12000001               North East   E06000004
#> 3906      England   E12000001               North East   E06000004
#> 3907      England   E12000001               North East   E06000005
#> 3908      England   E12000001               North East   E06000005
#> 3909      England   E12000001               North East   E06000005
#> 3910      England   E12000001               North East   E06000005
#> 3911      England   E12000001               North East   E06000047
#> 3912      England   E12000001               North East   E06000047
#> 3913      England   E12000001               North East   E06000047
#> 3914      England   E12000001               North East   E06000047
#> 3915      England   E12000001               North East   E06000057
#> 3916      England   E12000001               North East   E06000057
#> 3917      England   E12000001               North East   E06000057
#> 3918      England   E12000001               North East   E06000057
#> 3919      England   E12000001               North East   E08000021
#> 3920      England   E12000001               North East   E08000021
#> 3921      England   E12000001               North East   E08000021
#> 3922      England   E12000001               North East   E08000021
#> 3923      England   E12000001               North East   E08000022
#> 3924      England   E12000001               North East   E08000022
#> 3925      England   E12000001               North East   E08000022
#> 3926      England   E12000001               North East   E08000022
#> 3927      England   E12000001               North East   E08000023
#> 3928      England   E12000001               North East   E08000023
#> 3929      England   E12000001               North East   E08000023
#> 3930      England   E12000001               North East   E08000023
#> 3931      England   E12000001               North East   E08000024
#> 3932      England   E12000001               North East   E08000024
#> 3933      England   E12000001               North East   E08000024
#> 3934      England   E12000001               North East   E08000024
#> 3935      England   E12000001               North East   E08000037
#> 3936      England   E12000001               North East   E08000037
#> 3937      England   E12000001               North East   E08000037
#> 3938      England   E12000001               North East   E08000037
#> 3939      England   E12000002               North West        <NA>
#> 3940      England   E12000002               North West        <NA>
#> 3941      England   E12000002               North West        <NA>
#> 3942      England   E12000002               North West        <NA>
#> 3943      England   E12000002               North West   E06000006
#> 3944      England   E12000002               North West   E06000006
#> 3945      England   E12000002               North West   E06000006
#> 3946      England   E12000002               North West   E06000006
#> 3947      England   E12000002               North West   E06000007
#> 3948      England   E12000002               North West   E06000007
#> 3949      England   E12000002               North West   E06000007
#> 3950      England   E12000002               North West   E06000007
#> 3951      England   E12000002               North West   E06000008
#> 3952      England   E12000002               North West   E06000008
#> 3953      England   E12000002               North West   E06000008
#> 3954      England   E12000002               North West   E06000008
#> 3955      England   E12000002               North West   E06000009
#> 3956      England   E12000002               North West   E06000009
#> 3957      England   E12000002               North West   E06000009
#> 3958      England   E12000002               North West   E06000009
#> 3959      England   E12000002               North West   E06000049
#> 3960      England   E12000002               North West   E06000049
#> 3961      England   E12000002               North West   E06000049
#> 3962      England   E12000002               North West   E06000049
#> 3963      England   E12000002               North West   E06000050
#> 3964      England   E12000002               North West   E06000050
#> 3965      England   E12000002               North West   E06000050
#> 3966      England   E12000002               North West   E06000050
#> 3967      England   E12000002               North West   E06000063
#> 3968      England   E12000002               North West   E06000063
#> 3969      England   E12000002               North West   E06000063
#> 3970      England   E12000002               North West   E06000063
#> 3971      England   E12000002               North West   E06000064
#> 3972      England   E12000002               North West   E06000064
#> 3973      England   E12000002               North West   E06000064
#> 3974      England   E12000002               North West   E06000064
#> 3975      England   E12000002               North West   E08000001
#> 3976      England   E12000002               North West   E08000001
#> 3977      England   E12000002               North West   E08000001
#> 3978      England   E12000002               North West   E08000001
#> 3979      England   E12000002               North West   E08000002
#> 3980      England   E12000002               North West   E08000002
#> 3981      England   E12000002               North West   E08000002
#> 3982      England   E12000002               North West   E08000002
#> 3983      England   E12000002               North West   E08000003
#> 3984      England   E12000002               North West   E08000003
#> 3985      England   E12000002               North West   E08000003
#> 3986      England   E12000002               North West   E08000003
#> 3987      England   E12000002               North West   E08000004
#> 3988      England   E12000002               North West   E08000004
#> 3989      England   E12000002               North West   E08000004
#> 3990      England   E12000002               North West   E08000004
#> 3991      England   E12000002               North West   E08000005
#> 3992      England   E12000002               North West   E08000005
#> 3993      England   E12000002               North West   E08000005
#> 3994      England   E12000002               North West   E08000005
#> 3995      England   E12000002               North West   E08000006
#> 3996      England   E12000002               North West   E08000006
#> 3997      England   E12000002               North West   E08000006
#> 3998      England   E12000002               North West   E08000006
#> 3999      England   E12000002               North West   E08000007
#> 4000      England   E12000002               North West   E08000007
#> 4001      England   E12000002               North West   E08000007
#> 4002      England   E12000002               North West   E08000007
#> 4003      England   E12000002               North West   E08000008
#> 4004      England   E12000002               North West   E08000008
#> 4005      England   E12000002               North West   E08000008
#> 4006      England   E12000002               North West   E08000008
#> 4007      England   E12000002               North West   E08000009
#> 4008      England   E12000002               North West   E08000009
#> 4009      England   E12000002               North West   E08000009
#> 4010      England   E12000002               North West   E08000009
#> 4011      England   E12000002               North West   E08000010
#> 4012      England   E12000002               North West   E08000010
#> 4013      England   E12000002               North West   E08000010
#> 4014      England   E12000002               North West   E08000010
#> 4015      England   E12000002               North West   E08000011
#> 4016      England   E12000002               North West   E08000011
#> 4017      England   E12000002               North West   E08000011
#> 4018      England   E12000002               North West   E08000011
#> 4019      England   E12000002               North West   E08000012
#> 4020      England   E12000002               North West   E08000012
#> 4021      England   E12000002               North West   E08000012
#> 4022      England   E12000002               North West   E08000012
#> 4023      England   E12000002               North West   E08000013
#> 4024      England   E12000002               North West   E08000013
#> 4025      England   E12000002               North West   E08000013
#> 4026      England   E12000002               North West   E08000013
#> 4027      England   E12000002               North West   E08000014
#> 4028      England   E12000002               North West   E08000014
#> 4029      England   E12000002               North West   E08000014
#> 4030      England   E12000002               North West   E08000014
#> 4031      England   E12000002               North West   E08000015
#> 4032      England   E12000002               North West   E08000015
#> 4033      England   E12000002               North West   E08000015
#> 4034      England   E12000002               North West   E08000015
#> 4035      England   E12000002               North West   E10000017
#> 4036      England   E12000002               North West   E10000017
#> 4037      England   E12000002               North West   E10000017
#> 4038      England   E12000002               North West   E10000017
#> 4039      England   E12000003 Yorkshire and The Humber        <NA>
#> 4040      England   E12000003 Yorkshire and The Humber        <NA>
#> 4041      England   E12000003 Yorkshire and The Humber        <NA>
#> 4042      England   E12000003 Yorkshire and The Humber        <NA>
#> 4043      England   E12000003 Yorkshire and The Humber   E06000010
#> 4044      England   E12000003 Yorkshire and The Humber   E06000010
#> 4045      England   E12000003 Yorkshire and The Humber   E06000010
#> 4046      England   E12000003 Yorkshire and The Humber   E06000010
#> 4047      England   E12000003 Yorkshire and The Humber   E06000011
#> 4048      England   E12000003 Yorkshire and The Humber   E06000011
#> 4049      England   E12000003 Yorkshire and The Humber   E06000011
#> 4050      England   E12000003 Yorkshire and The Humber   E06000011
#> 4051      England   E12000003 Yorkshire and The Humber   E06000012
#> 4052      England   E12000003 Yorkshire and The Humber   E06000012
#> 4053      England   E12000003 Yorkshire and The Humber   E06000012
#> 4054      England   E12000003 Yorkshire and The Humber   E06000012
#> 4055      England   E12000003 Yorkshire and The Humber   E06000013
#> 4056      England   E12000003 Yorkshire and The Humber   E06000013
#> 4057      England   E12000003 Yorkshire and The Humber   E06000013
#> 4058      England   E12000003 Yorkshire and The Humber   E06000013
#> 4059      England   E12000003 Yorkshire and The Humber   E06000014
#> 4060      England   E12000003 Yorkshire and The Humber   E06000014
#> 4061      England   E12000003 Yorkshire and The Humber   E06000014
#> 4062      England   E12000003 Yorkshire and The Humber   E06000014
#> 4063      England   E12000003 Yorkshire and The Humber   E06000065
#> 4064      England   E12000003 Yorkshire and The Humber   E06000065
#> 4065      England   E12000003 Yorkshire and The Humber   E06000065
#> 4066      England   E12000003 Yorkshire and The Humber   E06000065
#> 4067      England   E12000003 Yorkshire and The Humber   E08000016
#> 4068      England   E12000003 Yorkshire and The Humber   E08000016
#> 4069      England   E12000003 Yorkshire and The Humber   E08000016
#> 4070      England   E12000003 Yorkshire and The Humber   E08000016
#> 4071      England   E12000003 Yorkshire and The Humber   E08000017
#> 4072      England   E12000003 Yorkshire and The Humber   E08000017
#> 4073      England   E12000003 Yorkshire and The Humber   E08000017
#> 4074      England   E12000003 Yorkshire and The Humber   E08000017
#> 4075      England   E12000003 Yorkshire and The Humber   E08000018
#> 4076      England   E12000003 Yorkshire and The Humber   E08000018
#> 4077      England   E12000003 Yorkshire and The Humber   E08000018
#> 4078      England   E12000003 Yorkshire and The Humber   E08000018
#> 4079      England   E12000003 Yorkshire and The Humber   E08000019
#> 4080      England   E12000003 Yorkshire and The Humber   E08000019
#> 4081      England   E12000003 Yorkshire and The Humber   E08000019
#> 4082      England   E12000003 Yorkshire and The Humber   E08000019
#> 4083      England   E12000003 Yorkshire and The Humber   E08000032
#> 4084      England   E12000003 Yorkshire and The Humber   E08000032
#> 4085      England   E12000003 Yorkshire and The Humber   E08000032
#> 4086      England   E12000003 Yorkshire and The Humber   E08000032
#> 4087      England   E12000003 Yorkshire and The Humber   E08000033
#> 4088      England   E12000003 Yorkshire and The Humber   E08000033
#> 4089      England   E12000003 Yorkshire and The Humber   E08000033
#> 4090      England   E12000003 Yorkshire and The Humber   E08000033
#> 4091      England   E12000003 Yorkshire and The Humber   E08000034
#> 4092      England   E12000003 Yorkshire and The Humber   E08000034
#> 4093      England   E12000003 Yorkshire and The Humber   E08000034
#> 4094      England   E12000003 Yorkshire and The Humber   E08000034
#> 4095      England   E12000003 Yorkshire and The Humber   E08000035
#> 4096      England   E12000003 Yorkshire and The Humber   E08000035
#> 4097      England   E12000003 Yorkshire and The Humber   E08000035
#> 4098      England   E12000003 Yorkshire and The Humber   E08000035
#> 4099      England   E12000003 Yorkshire and The Humber   E08000036
#> 4100      England   E12000003 Yorkshire and The Humber   E08000036
#> 4101      England   E12000003 Yorkshire and The Humber   E08000036
#> 4102      England   E12000003 Yorkshire and The Humber   E08000036
#> 4103      England   E12000004            East Midlands        <NA>
#> 4104      England   E12000004            East Midlands        <NA>
#> 4105      England   E12000004            East Midlands        <NA>
#> 4106      England   E12000004            East Midlands        <NA>
#> 4107      England   E12000004            East Midlands   E06000015
#> 4108      England   E12000004            East Midlands   E06000015
#> 4109      England   E12000004            East Midlands   E06000015
#> 4110      England   E12000004            East Midlands   E06000015
#> 4111      England   E12000004            East Midlands   E06000016
#> 4112      England   E12000004            East Midlands   E06000016
#> 4113      England   E12000004            East Midlands   E06000016
#> 4114      England   E12000004            East Midlands   E06000016
#> 4115      England   E12000004            East Midlands   E06000017
#> 4116      England   E12000004            East Midlands   E06000017
#> 4117      England   E12000004            East Midlands   E06000017
#> 4118      England   E12000004            East Midlands   E06000018
#> 4119      England   E12000004            East Midlands   E06000018
#> 4120      England   E12000004            East Midlands   E06000018
#> 4121      England   E12000004            East Midlands   E06000018
#> 4122      England   E12000004            East Midlands   E06000061
#> 4123      England   E12000004            East Midlands   E06000061
#> 4124      England   E12000004            East Midlands   E06000061
#> 4125      England   E12000004            East Midlands   E06000061
#> 4126      England   E12000004            East Midlands   E06000062
#> 4127      England   E12000004            East Midlands   E06000062
#> 4128      England   E12000004            East Midlands   E06000062
#> 4129      England   E12000004            East Midlands   E06000062
#> 4130      England   E12000004            East Midlands   E10000007
#> 4131      England   E12000004            East Midlands   E10000007
#> 4132      England   E12000004            East Midlands   E10000007
#> 4133      England   E12000004            East Midlands   E10000007
#> 4134      England   E12000004            East Midlands   E10000018
#> 4135      England   E12000004            East Midlands   E10000018
#> 4136      England   E12000004            East Midlands   E10000018
#> 4137      England   E12000004            East Midlands   E10000018
#> 4138      England   E12000004            East Midlands   E10000019
#> 4139      England   E12000004            East Midlands   E10000019
#> 4140      England   E12000004            East Midlands   E10000019
#> 4141      England   E12000004            East Midlands   E10000019
#> 4142      England   E12000004            East Midlands   E10000024
#> 4143      England   E12000004            East Midlands   E10000024
#> 4144      England   E12000004            East Midlands   E10000024
#> 4145      England   E12000004            East Midlands   E10000024
#> 4146      England   E12000005            West Midlands        <NA>
#> 4147      England   E12000005            West Midlands        <NA>
#> 4148      England   E12000005            West Midlands        <NA>
#> 4149      England   E12000005            West Midlands        <NA>
#> 4150      England   E12000005            West Midlands   E06000019
#> 4151      England   E12000005            West Midlands   E06000019
#> 4152      England   E12000005            West Midlands   E06000019
#> 4153      England   E12000005            West Midlands   E06000019
#> 4154      England   E12000005            West Midlands   E06000020
#> 4155      England   E12000005            West Midlands   E06000020
#> 4156      England   E12000005            West Midlands   E06000020
#> 4157      England   E12000005            West Midlands   E06000020
#> 4158      England   E12000005            West Midlands   E06000021
#> 4159      England   E12000005            West Midlands   E06000021
#> 4160      England   E12000005            West Midlands   E06000021
#> 4161      England   E12000005            West Midlands   E06000021
#> 4162      England   E12000005            West Midlands   E06000051
#> 4163      England   E12000005            West Midlands   E06000051
#> 4164      England   E12000005            West Midlands   E06000051
#> 4165      England   E12000005            West Midlands   E06000051
#> 4166      England   E12000005            West Midlands   E08000025
#> 4167      England   E12000005            West Midlands   E08000025
#> 4168      England   E12000005            West Midlands   E08000025
#> 4169      England   E12000005            West Midlands   E08000025
#> 4170      England   E12000005            West Midlands   E08000026
#> 4171      England   E12000005            West Midlands   E08000026
#> 4172      England   E12000005            West Midlands   E08000026
#> 4173      England   E12000005            West Midlands   E08000026
#> 4174      England   E12000005            West Midlands   E08000027
#> 4175      England   E12000005            West Midlands   E08000027
#> 4176      England   E12000005            West Midlands   E08000027
#> 4177      England   E12000005            West Midlands   E08000027
#> 4178      England   E12000005            West Midlands   E08000028
#> 4179      England   E12000005            West Midlands   E08000028
#> 4180      England   E12000005            West Midlands   E08000028
#> 4181      England   E12000005            West Midlands   E08000028
#> 4182      England   E12000005            West Midlands   E08000029
#> 4183      England   E12000005            West Midlands   E08000029
#> 4184      England   E12000005            West Midlands   E08000029
#> 4185      England   E12000005            West Midlands   E08000029
#> 4186      England   E12000005            West Midlands   E08000030
#> 4187      England   E12000005            West Midlands   E08000030
#> 4188      England   E12000005            West Midlands   E08000030
#> 4189      England   E12000005            West Midlands   E08000030
#> 4190      England   E12000005            West Midlands   E08000031
#> 4191      England   E12000005            West Midlands   E08000031
#> 4192      England   E12000005            West Midlands   E08000031
#> 4193      England   E12000005            West Midlands   E08000031
#> 4194      England   E12000005            West Midlands   E10000028
#> 4195      England   E12000005            West Midlands   E10000028
#> 4196      England   E12000005            West Midlands   E10000028
#> 4197      England   E12000005            West Midlands   E10000028
#> 4198      England   E12000005            West Midlands   E10000031
#> 4199      England   E12000005            West Midlands   E10000031
#> 4200      England   E12000005            West Midlands   E10000031
#> 4201      England   E12000005            West Midlands   E10000031
#> 4202      England   E12000005            West Midlands   E10000034
#> 4203      England   E12000005            West Midlands   E10000034
#> 4204      England   E12000005            West Midlands   E10000034
#> 4205      England   E12000005            West Midlands   E10000034
#> 4206      England   E12000006          East of England        <NA>
#> 4207      England   E12000006          East of England        <NA>
#> 4208      England   E12000006          East of England        <NA>
#> 4209      England   E12000006          East of England        <NA>
#> 4210      England   E12000006          East of England   E06000031
#> 4211      England   E12000006          East of England   E06000031
#> 4212      England   E12000006          East of England   E06000031
#> 4213      England   E12000006          East of England   E06000031
#> 4214      England   E12000006          East of England   E06000032
#> 4215      England   E12000006          East of England   E06000032
#> 4216      England   E12000006          East of England   E06000032
#> 4217      England   E12000006          East of England   E06000032
#> 4218      England   E12000006          East of England   E06000033
#> 4219      England   E12000006          East of England   E06000033
#> 4220      England   E12000006          East of England   E06000033
#> 4221      England   E12000006          East of England   E06000033
#> 4222      England   E12000006          East of England   E06000034
#> 4223      England   E12000006          East of England   E06000034
#> 4224      England   E12000006          East of England   E06000034
#> 4225      England   E12000006          East of England   E06000034
#> 4226      England   E12000006          East of England   E06000055
#> 4227      England   E12000006          East of England   E06000055
#> 4228      England   E12000006          East of England   E06000055
#> 4229      England   E12000006          East of England   E06000055
#> 4230      England   E12000006          East of England   E06000056
#> 4231      England   E12000006          East of England   E06000056
#> 4232      England   E12000006          East of England   E06000056
#> 4233      England   E12000006          East of England   E06000056
#> 4234      England   E12000006          East of England   E10000003
#> 4235      England   E12000006          East of England   E10000003
#> 4236      England   E12000006          East of England   E10000003
#> 4237      England   E12000006          East of England   E10000003
#> 4238      England   E12000006          East of England   E10000012
#> 4239      England   E12000006          East of England   E10000012
#> 4240      England   E12000006          East of England   E10000012
#> 4241      England   E12000006          East of England   E10000012
#> 4242      England   E12000006          East of England   E10000015
#> 4243      England   E12000006          East of England   E10000015
#> 4244      England   E12000006          East of England   E10000015
#> 4245      England   E12000006          East of England   E10000015
#> 4246      England   E12000006          East of England   E10000020
#> 4247      England   E12000006          East of England   E10000020
#> 4248      England   E12000006          East of England   E10000020
#> 4249      England   E12000006          East of England   E10000020
#> 4250      England   E12000006          East of England   E10000029
#> 4251      England   E12000006          East of England   E10000029
#> 4252      England   E12000006          East of England   E10000029
#> 4253      England   E12000006          East of England   E10000029
#> 4254      England   E12000007                   London        <NA>
#> 4255      England   E12000007                   London        <NA>
#> 4256      England   E12000007                   London        <NA>
#> 4257      England   E12000007                   London        <NA>
#> 4258      England   E12000007                   London   E09000001
#> 4259      England   E12000007                   London   E09000001
#> 4260      England   E12000007                   London   E09000002
#> 4261      England   E12000007                   London   E09000002
#> 4262      England   E12000007                   London   E09000002
#> 4263      England   E12000007                   London   E09000002
#> 4264      England   E12000007                   London   E09000003
#> 4265      England   E12000007                   London   E09000003
#> 4266      England   E12000007                   London   E09000003
#> 4267      England   E12000007                   London   E09000003
#> 4268      England   E12000007                   London   E09000004
#> 4269      England   E12000007                   London   E09000004
#> 4270      England   E12000007                   London   E09000004
#> 4271      England   E12000007                   London   E09000004
#> 4272      England   E12000007                   London   E09000005
#> 4273      England   E12000007                   London   E09000005
#> 4274      England   E12000007                   London   E09000005
#> 4275      England   E12000007                   London   E09000005
#> 4276      England   E12000007                   London   E09000006
#> 4277      England   E12000007                   London   E09000006
#> 4278      England   E12000007                   London   E09000006
#> 4279      England   E12000007                   London   E09000006
#> 4280      England   E12000007                   London   E09000007
#> 4281      England   E12000007                   London   E09000007
#> 4282      England   E12000007                   London   E09000007
#> 4283      England   E12000007                   London   E09000007
#> 4284      England   E12000007                   London   E09000008
#> 4285      England   E12000007                   London   E09000008
#> 4286      England   E12000007                   London   E09000008
#> 4287      England   E12000007                   London   E09000008
#> 4288      England   E12000007                   London   E09000009
#> 4289      England   E12000007                   London   E09000009
#> 4290      England   E12000007                   London   E09000009
#> 4291      England   E12000007                   London   E09000009
#> 4292      England   E12000007                   London   E09000010
#> 4293      England   E12000007                   London   E09000010
#> 4294      England   E12000007                   London   E09000010
#> 4295      England   E12000007                   London   E09000010
#> 4296      England   E12000007                   London   E09000011
#> 4297      England   E12000007                   London   E09000011
#> 4298      England   E12000007                   London   E09000011
#> 4299      England   E12000007                   London   E09000011
#> 4300      England   E12000007                   London   E09000012
#> 4301      England   E12000007                   London   E09000012
#> 4302      England   E12000007                   London   E09000012
#> 4303      England   E12000007                   London   E09000012
#> 4304      England   E12000007                   London   E09000013
#> 4305      England   E12000007                   London   E09000013
#> 4306      England   E12000007                   London   E09000013
#> 4307      England   E12000007                   London   E09000013
#> 4308      England   E12000007                   London   E09000014
#> 4309      England   E12000007                   London   E09000014
#> 4310      England   E12000007                   London   E09000014
#> 4311      England   E12000007                   London   E09000014
#> 4312      England   E12000007                   London   E09000015
#> 4313      England   E12000007                   London   E09000015
#> 4314      England   E12000007                   London   E09000015
#> 4315      England   E12000007                   London   E09000015
#> 4316      England   E12000007                   London   E09000016
#> 4317      England   E12000007                   London   E09000016
#> 4318      England   E12000007                   London   E09000016
#> 4319      England   E12000007                   London   E09000016
#> 4320      England   E12000007                   London   E09000017
#> 4321      England   E12000007                   London   E09000017
#> 4322      England   E12000007                   London   E09000017
#> 4323      England   E12000007                   London   E09000017
#> 4324      England   E12000007                   London   E09000018
#> 4325      England   E12000007                   London   E09000018
#> 4326      England   E12000007                   London   E09000018
#> 4327      England   E12000007                   London   E09000018
#> 4328      England   E12000007                   London   E09000019
#> 4329      England   E12000007                   London   E09000019
#> 4330      England   E12000007                   London   E09000019
#> 4331      England   E12000007                   London   E09000019
#> 4332      England   E12000007                   London   E09000020
#> 4333      England   E12000007                   London   E09000020
#> 4334      England   E12000007                   London   E09000020
#> 4335      England   E12000007                   London   E09000020
#> 4336      England   E12000007                   London   E09000021
#> 4337      England   E12000007                   London   E09000021
#> 4338      England   E12000007                   London   E09000021
#> 4339      England   E12000007                   London   E09000021
#> 4340      England   E12000007                   London   E09000022
#> 4341      England   E12000007                   London   E09000022
#> 4342      England   E12000007                   London   E09000022
#> 4343      England   E12000007                   London   E09000022
#> 4344      England   E12000007                   London   E09000023
#> 4345      England   E12000007                   London   E09000023
#> 4346      England   E12000007                   London   E09000023
#> 4347      England   E12000007                   London   E09000023
#> 4348      England   E12000007                   London   E09000024
#> 4349      England   E12000007                   London   E09000024
#> 4350      England   E12000007                   London   E09000024
#> 4351      England   E12000007                   London   E09000024
#> 4352      England   E12000007                   London   E09000025
#> 4353      England   E12000007                   London   E09000025
#> 4354      England   E12000007                   London   E09000025
#> 4355      England   E12000007                   London   E09000025
#> 4356      England   E12000007                   London   E09000026
#> 4357      England   E12000007                   London   E09000026
#> 4358      England   E12000007                   London   E09000026
#> 4359      England   E12000007                   London   E09000026
#> 4360      England   E12000007                   London   E09000027
#> 4361      England   E12000007                   London   E09000027
#> 4362      England   E12000007                   London   E09000027
#> 4363      England   E12000007                   London   E09000027
#> 4364      England   E12000007                   London   E09000028
#> 4365      England   E12000007                   London   E09000028
#> 4366      England   E12000007                   London   E09000028
#> 4367      England   E12000007                   London   E09000028
#> 4368      England   E12000007                   London   E09000029
#> 4369      England   E12000007                   London   E09000029
#> 4370      England   E12000007                   London   E09000029
#> 4371      England   E12000007                   London   E09000029
#> 4372      England   E12000007                   London   E09000030
#> 4373      England   E12000007                   London   E09000030
#> 4374      England   E12000007                   London   E09000030
#> 4375      England   E12000007                   London   E09000030
#> 4376      England   E12000007                   London   E09000031
#> 4377      England   E12000007                   London   E09000031
#> 4378      England   E12000007                   London   E09000031
#> 4379      England   E12000007                   London   E09000031
#> 4380      England   E12000007                   London   E09000032
#> 4381      England   E12000007                   London   E09000032
#> 4382      England   E12000007                   London   E09000032
#> 4383      England   E12000007                   London   E09000032
#> 4384      England   E12000007                   London   E09000033
#> 4385      England   E12000007                   London   E09000033
#> 4386      England   E12000007                   London   E09000033
#> 4387      England   E12000007                   London   E09000033
#> 4388      England   E12000008               South East        <NA>
#> 4389      England   E12000008               South East        <NA>
#> 4390      England   E12000008               South East        <NA>
#> 4391      England   E12000008               South East        <NA>
#> 4392      England   E12000008               South East   E06000035
#> 4393      England   E12000008               South East   E06000035
#> 4394      England   E12000008               South East   E06000035
#> 4395      England   E12000008               South East   E06000035
#> 4396      England   E12000008               South East   E06000036
#> 4397      England   E12000008               South East   E06000036
#> 4398      England   E12000008               South East   E06000036
#> 4399      England   E12000008               South East   E06000036
#> 4400      England   E12000008               South East   E06000037
#> 4401      England   E12000008               South East   E06000037
#> 4402      England   E12000008               South East   E06000037
#> 4403      England   E12000008               South East   E06000037
#> 4404      England   E12000008               South East   E06000038
#> 4405      England   E12000008               South East   E06000038
#> 4406      England   E12000008               South East   E06000038
#> 4407      England   E12000008               South East   E06000038
#> 4408      England   E12000008               South East   E06000039
#> 4409      England   E12000008               South East   E06000039
#> 4410      England   E12000008               South East   E06000039
#> 4411      England   E12000008               South East   E06000039
#> 4412      England   E12000008               South East   E06000040
#> 4413      England   E12000008               South East   E06000040
#> 4414      England   E12000008               South East   E06000040
#> 4415      England   E12000008               South East   E06000040
#> 4416      England   E12000008               South East   E06000041
#> 4417      England   E12000008               South East   E06000041
#> 4418      England   E12000008               South East   E06000041
#> 4419      England   E12000008               South East   E06000041
#> 4420      England   E12000008               South East   E06000042
#> 4421      England   E12000008               South East   E06000042
#> 4422      England   E12000008               South East   E06000042
#> 4423      England   E12000008               South East   E06000042
#> 4424      England   E12000008               South East   E06000043
#> 4425      England   E12000008               South East   E06000043
#> 4426      England   E12000008               South East   E06000043
#> 4427      England   E12000008               South East   E06000043
#> 4428      England   E12000008               South East   E06000044
#> 4429      England   E12000008               South East   E06000044
#> 4430      England   E12000008               South East   E06000044
#> 4431      England   E12000008               South East   E06000044
#> 4432      England   E12000008               South East   E06000045
#> 4433      England   E12000008               South East   E06000045
#> 4434      England   E12000008               South East   E06000045
#> 4435      England   E12000008               South East   E06000045
#> 4436      England   E12000008               South East   E06000046
#> 4437      England   E12000008               South East   E06000046
#> 4438      England   E12000008               South East   E06000046
#> 4439      England   E12000008               South East   E06000046
#> 4440      England   E12000008               South East   E06000060
#> 4441      England   E12000008               South East   E06000060
#> 4442      England   E12000008               South East   E06000060
#> 4443      England   E12000008               South East   E06000060
#> 4444      England   E12000008               South East   E10000011
#> 4445      England   E12000008               South East   E10000011
#> 4446      England   E12000008               South East   E10000011
#> 4447      England   E12000008               South East   E10000011
#> 4448      England   E12000008               South East   E10000014
#> 4449      England   E12000008               South East   E10000014
#> 4450      England   E12000008               South East   E10000014
#> 4451      England   E12000008               South East   E10000014
#> 4452      England   E12000008               South East   E10000016
#> 4453      England   E12000008               South East   E10000016
#> 4454      England   E12000008               South East   E10000016
#> 4455      England   E12000008               South East   E10000016
#> 4456      England   E12000008               South East   E10000025
#> 4457      England   E12000008               South East   E10000025
#> 4458      England   E12000008               South East   E10000025
#> 4459      England   E12000008               South East   E10000025
#> 4460      England   E12000008               South East   E10000030
#> 4461      England   E12000008               South East   E10000030
#> 4462      England   E12000008               South East   E10000030
#> 4463      England   E12000008               South East   E10000030
#> 4464      England   E12000008               South East   E10000032
#> 4465      England   E12000008               South East   E10000032
#> 4466      England   E12000008               South East   E10000032
#> 4467      England   E12000008               South East   E10000032
#> 4468      England   E12000009               South West        <NA>
#> 4469      England   E12000009               South West        <NA>
#> 4470      England   E12000009               South West        <NA>
#> 4471      England   E12000009               South West        <NA>
#> 4472      England   E12000009               South West   E06000022
#> 4473      England   E12000009               South West   E06000022
#> 4474      England   E12000009               South West   E06000022
#> 4475      England   E12000009               South West   E06000022
#> 4476      England   E12000009               South West   E06000023
#> 4477      England   E12000009               South West   E06000023
#> 4478      England   E12000009               South West   E06000023
#> 4479      England   E12000009               South West   E06000023
#> 4480      England   E12000009               South West   E06000024
#> 4481      England   E12000009               South West   E06000024
#> 4482      England   E12000009               South West   E06000024
#> 4483      England   E12000009               South West   E06000024
#> 4484      England   E12000009               South West   E06000025
#> 4485      England   E12000009               South West   E06000025
#> 4486      England   E12000009               South West   E06000025
#> 4487      England   E12000009               South West   E06000025
#> 4488      England   E12000009               South West   E06000026
#> 4489      England   E12000009               South West   E06000026
#> 4490      England   E12000009               South West   E06000026
#> 4491      England   E12000009               South West   E06000026
#> 4492      England   E12000009               South West   E06000027
#> 4493      England   E12000009               South West   E06000027
#> 4494      England   E12000009               South West   E06000027
#> 4495      England   E12000009               South West   E06000027
#> 4496      England   E12000009               South West   E06000030
#> 4497      England   E12000009               South West   E06000030
#> 4498      England   E12000009               South West   E06000030
#> 4499      England   E12000009               South West   E06000030
#> 4500      England   E12000009               South West   E06000052
#> 4501      England   E12000009               South West   E06000052
#> 4502      England   E12000009               South West   E06000052
#> 4503      England   E12000009               South West   E06000052
#> 4504      England   E12000009               South West   E06000053
#> 4505      England   E12000009               South West   E06000053
#> 4506      England   E12000009               South West   E06000054
#> 4507      England   E12000009               South West   E06000054
#> 4508      England   E12000009               South West   E06000054
#> 4509      England   E12000009               South West   E06000054
#> 4510      England   E12000009               South West   E06000058
#> 4511      England   E12000009               South West   E06000058
#> 4512      England   E12000009               South West   E06000058
#> 4513      England   E12000009               South West   E06000058
#> 4514      England   E12000009               South West   E06000059
#> 4515      England   E12000009               South West   E06000059
#> 4516      England   E12000009               South West   E06000059
#> 4517      England   E12000009               South West   E06000059
#> 4518      England   E12000009               South West   E06000066
#> 4519      England   E12000009               South West   E06000066
#> 4520      England   E12000009               South West   E06000066
#> 4521      England   E12000009               South West   E06000066
#> 4522      England   E12000009               South West   E10000008
#> 4523      England   E12000009               South West   E10000008
#> 4524      England   E12000009               South West   E10000008
#> 4525      England   E12000009               South West   E10000008
#> 4526      England   E12000009               South West   E10000013
#> 4527      England   E12000009               South West   E10000013
#> 4528      England   E12000009               South West   E10000013
#> 4529      England   E12000009               South West   E10000013
#> 4530      England        <NA>                     <NA>        <NA>
#> 4531      England        <NA>                     <NA>        <NA>
#> 4532      England        <NA>                     <NA>        <NA>
#> 4533      England        <NA>                     <NA>        <NA>
#> 4534      England   E12000001               North East        <NA>
#> 4535      England   E12000001               North East        <NA>
#> 4536      England   E12000001               North East        <NA>
#> 4537      England   E12000001               North East        <NA>
#> 4538      England   E12000001               North East   E06000001
#> 4539      England   E12000001               North East   E06000001
#> 4540      England   E12000001               North East   E06000001
#> 4541      England   E12000001               North East   E06000001
#> 4542      England   E12000001               North East   E06000002
#> 4543      England   E12000001               North East   E06000002
#> 4544      England   E12000001               North East   E06000002
#> 4545      England   E12000001               North East   E06000002
#> 4546      England   E12000001               North East   E06000003
#> 4547      England   E12000001               North East   E06000003
#> 4548      England   E12000001               North East   E06000003
#> 4549      England   E12000001               North East   E06000003
#> 4550      England   E12000001               North East   E06000004
#> 4551      England   E12000001               North East   E06000004
#> 4552      England   E12000001               North East   E06000004
#> 4553      England   E12000001               North East   E06000004
#> 4554      England   E12000001               North East   E06000005
#> 4555      England   E12000001               North East   E06000005
#> 4556      England   E12000001               North East   E06000005
#> 4557      England   E12000001               North East   E06000005
#> 4558      England   E12000001               North East   E06000047
#> 4559      England   E12000001               North East   E06000047
#> 4560      England   E12000001               North East   E06000047
#> 4561      England   E12000001               North East   E06000047
#> 4562      England   E12000001               North East   E06000057
#> 4563      England   E12000001               North East   E06000057
#> 4564      England   E12000001               North East   E06000057
#> 4565      England   E12000001               North East   E06000057
#> 4566      England   E12000001               North East   E08000021
#> 4567      England   E12000001               North East   E08000021
#> 4568      England   E12000001               North East   E08000021
#> 4569      England   E12000001               North East   E08000021
#> 4570      England   E12000001               North East   E08000022
#> 4571      England   E12000001               North East   E08000022
#> 4572      England   E12000001               North East   E08000022
#> 4573      England   E12000001               North East   E08000022
#> 4574      England   E12000001               North East   E08000023
#> 4575      England   E12000001               North East   E08000023
#> 4576      England   E12000001               North East   E08000023
#> 4577      England   E12000001               North East   E08000023
#> 4578      England   E12000001               North East   E08000024
#> 4579      England   E12000001               North East   E08000024
#> 4580      England   E12000001               North East   E08000024
#> 4581      England   E12000001               North East   E08000024
#> 4582      England   E12000001               North East   E08000037
#> 4583      England   E12000001               North East   E08000037
#> 4584      England   E12000001               North East   E08000037
#> 4585      England   E12000001               North East   E08000037
#> 4586      England   E12000002               North West        <NA>
#> 4587      England   E12000002               North West        <NA>
#> 4588      England   E12000002               North West        <NA>
#> 4589      England   E12000002               North West        <NA>
#> 4590      England   E12000002               North West   E06000006
#> 4591      England   E12000002               North West   E06000006
#> 4592      England   E12000002               North West   E06000006
#> 4593      England   E12000002               North West   E06000006
#> 4594      England   E12000002               North West   E06000007
#> 4595      England   E12000002               North West   E06000007
#> 4596      England   E12000002               North West   E06000007
#> 4597      England   E12000002               North West   E06000007
#> 4598      England   E12000002               North West   E06000008
#> 4599      England   E12000002               North West   E06000008
#> 4600      England   E12000002               North West   E06000008
#> 4601      England   E12000002               North West   E06000008
#> 4602      England   E12000002               North West   E06000009
#> 4603      England   E12000002               North West   E06000009
#> 4604      England   E12000002               North West   E06000009
#> 4605      England   E12000002               North West   E06000009
#> 4606      England   E12000002               North West   E06000049
#> 4607      England   E12000002               North West   E06000049
#> 4608      England   E12000002               North West   E06000049
#> 4609      England   E12000002               North West   E06000049
#> 4610      England   E12000002               North West   E06000050
#> 4611      England   E12000002               North West   E06000050
#> 4612      England   E12000002               North West   E06000050
#> 4613      England   E12000002               North West   E06000050
#> 4614      England   E12000002               North West   E06000063
#> 4615      England   E12000002               North West   E06000063
#> 4616      England   E12000002               North West   E06000063
#> 4617      England   E12000002               North West   E06000063
#> 4618      England   E12000002               North West   E06000064
#> 4619      England   E12000002               North West   E06000064
#> 4620      England   E12000002               North West   E06000064
#> 4621      England   E12000002               North West   E06000064
#> 4622      England   E12000002               North West   E08000001
#> 4623      England   E12000002               North West   E08000001
#> 4624      England   E12000002               North West   E08000001
#> 4625      England   E12000002               North West   E08000001
#> 4626      England   E12000002               North West   E08000002
#> 4627      England   E12000002               North West   E08000002
#> 4628      England   E12000002               North West   E08000002
#> 4629      England   E12000002               North West   E08000002
#> 4630      England   E12000002               North West   E08000003
#> 4631      England   E12000002               North West   E08000003
#> 4632      England   E12000002               North West   E08000003
#> 4633      England   E12000002               North West   E08000003
#> 4634      England   E12000002               North West   E08000004
#> 4635      England   E12000002               North West   E08000004
#> 4636      England   E12000002               North West   E08000004
#> 4637      England   E12000002               North West   E08000004
#> 4638      England   E12000002               North West   E08000005
#> 4639      England   E12000002               North West   E08000005
#> 4640      England   E12000002               North West   E08000005
#> 4641      England   E12000002               North West   E08000005
#> 4642      England   E12000002               North West   E08000006
#> 4643      England   E12000002               North West   E08000006
#> 4644      England   E12000002               North West   E08000006
#> 4645      England   E12000002               North West   E08000006
#> 4646      England   E12000002               North West   E08000007
#> 4647      England   E12000002               North West   E08000007
#> 4648      England   E12000002               North West   E08000007
#> 4649      England   E12000002               North West   E08000007
#> 4650      England   E12000002               North West   E08000008
#> 4651      England   E12000002               North West   E08000008
#> 4652      England   E12000002               North West   E08000008
#> 4653      England   E12000002               North West   E08000008
#> 4654      England   E12000002               North West   E08000009
#> 4655      England   E12000002               North West   E08000009
#> 4656      England   E12000002               North West   E08000009
#> 4657      England   E12000002               North West   E08000009
#> 4658      England   E12000002               North West   E08000010
#> 4659      England   E12000002               North West   E08000010
#> 4660      England   E12000002               North West   E08000010
#> 4661      England   E12000002               North West   E08000010
#> 4662      England   E12000002               North West   E08000011
#> 4663      England   E12000002               North West   E08000011
#> 4664      England   E12000002               North West   E08000011
#> 4665      England   E12000002               North West   E08000011
#> 4666      England   E12000002               North West   E08000012
#> 4667      England   E12000002               North West   E08000012
#> 4668      England   E12000002               North West   E08000012
#> 4669      England   E12000002               North West   E08000012
#> 4670      England   E12000002               North West   E08000013
#> 4671      England   E12000002               North West   E08000013
#> 4672      England   E12000002               North West   E08000013
#> 4673      England   E12000002               North West   E08000013
#> 4674      England   E12000002               North West   E08000014
#> 4675      England   E12000002               North West   E08000014
#> 4676      England   E12000002               North West   E08000014
#> 4677      England   E12000002               North West   E08000014
#> 4678      England   E12000002               North West   E08000015
#> 4679      England   E12000002               North West   E08000015
#> 4680      England   E12000002               North West   E08000015
#> 4681      England   E12000002               North West   E08000015
#> 4682      England   E12000002               North West   E10000017
#> 4683      England   E12000002               North West   E10000017
#> 4684      England   E12000002               North West   E10000017
#> 4685      England   E12000002               North West   E10000017
#> 4686      England   E12000003 Yorkshire and The Humber        <NA>
#> 4687      England   E12000003 Yorkshire and The Humber        <NA>
#> 4688      England   E12000003 Yorkshire and The Humber        <NA>
#> 4689      England   E12000003 Yorkshire and The Humber        <NA>
#> 4690      England   E12000003 Yorkshire and The Humber   E06000010
#> 4691      England   E12000003 Yorkshire and The Humber   E06000010
#> 4692      England   E12000003 Yorkshire and The Humber   E06000010
#> 4693      England   E12000003 Yorkshire and The Humber   E06000010
#> 4694      England   E12000003 Yorkshire and The Humber   E06000011
#> 4695      England   E12000003 Yorkshire and The Humber   E06000011
#> 4696      England   E12000003 Yorkshire and The Humber   E06000011
#> 4697      England   E12000003 Yorkshire and The Humber   E06000011
#> 4698      England   E12000003 Yorkshire and The Humber   E06000012
#> 4699      England   E12000003 Yorkshire and The Humber   E06000012
#> 4700      England   E12000003 Yorkshire and The Humber   E06000012
#> 4701      England   E12000003 Yorkshire and The Humber   E06000012
#> 4702      England   E12000003 Yorkshire and The Humber   E06000013
#> 4703      England   E12000003 Yorkshire and The Humber   E06000013
#> 4704      England   E12000003 Yorkshire and The Humber   E06000013
#> 4705      England   E12000003 Yorkshire and The Humber   E06000013
#> 4706      England   E12000003 Yorkshire and The Humber   E06000014
#> 4707      England   E12000003 Yorkshire and The Humber   E06000014
#> 4708      England   E12000003 Yorkshire and The Humber   E06000014
#> 4709      England   E12000003 Yorkshire and The Humber   E06000014
#> 4710      England   E12000003 Yorkshire and The Humber   E06000065
#> 4711      England   E12000003 Yorkshire and The Humber   E06000065
#> 4712      England   E12000003 Yorkshire and The Humber   E06000065
#> 4713      England   E12000003 Yorkshire and The Humber   E06000065
#> 4714      England   E12000003 Yorkshire and The Humber   E08000016
#> 4715      England   E12000003 Yorkshire and The Humber   E08000016
#> 4716      England   E12000003 Yorkshire and The Humber   E08000016
#> 4717      England   E12000003 Yorkshire and The Humber   E08000016
#> 4718      England   E12000003 Yorkshire and The Humber   E08000017
#> 4719      England   E12000003 Yorkshire and The Humber   E08000017
#> 4720      England   E12000003 Yorkshire and The Humber   E08000017
#> 4721      England   E12000003 Yorkshire and The Humber   E08000017
#> 4722      England   E12000003 Yorkshire and The Humber   E08000018
#> 4723      England   E12000003 Yorkshire and The Humber   E08000018
#> 4724      England   E12000003 Yorkshire and The Humber   E08000018
#> 4725      England   E12000003 Yorkshire and The Humber   E08000018
#> 4726      England   E12000003 Yorkshire and The Humber   E08000019
#> 4727      England   E12000003 Yorkshire and The Humber   E08000019
#> 4728      England   E12000003 Yorkshire and The Humber   E08000019
#> 4729      England   E12000003 Yorkshire and The Humber   E08000019
#> 4730      England   E12000003 Yorkshire and The Humber   E08000032
#> 4731      England   E12000003 Yorkshire and The Humber   E08000032
#> 4732      England   E12000003 Yorkshire and The Humber   E08000032
#> 4733      England   E12000003 Yorkshire and The Humber   E08000032
#> 4734      England   E12000003 Yorkshire and The Humber   E08000033
#> 4735      England   E12000003 Yorkshire and The Humber   E08000033
#> 4736      England   E12000003 Yorkshire and The Humber   E08000033
#> 4737      England   E12000003 Yorkshire and The Humber   E08000033
#> 4738      England   E12000003 Yorkshire and The Humber   E08000034
#> 4739      England   E12000003 Yorkshire and The Humber   E08000034
#> 4740      England   E12000003 Yorkshire and The Humber   E08000034
#> 4741      England   E12000003 Yorkshire and The Humber   E08000034
#> 4742      England   E12000003 Yorkshire and The Humber   E08000035
#> 4743      England   E12000003 Yorkshire and The Humber   E08000035
#> 4744      England   E12000003 Yorkshire and The Humber   E08000035
#> 4745      England   E12000003 Yorkshire and The Humber   E08000035
#> 4746      England   E12000003 Yorkshire and The Humber   E08000036
#> 4747      England   E12000003 Yorkshire and The Humber   E08000036
#> 4748      England   E12000003 Yorkshire and The Humber   E08000036
#> 4749      England   E12000003 Yorkshire and The Humber   E08000036
#> 4750      England   E12000004            East Midlands        <NA>
#> 4751      England   E12000004            East Midlands        <NA>
#> 4752      England   E12000004            East Midlands        <NA>
#> 4753      England   E12000004            East Midlands        <NA>
#> 4754      England   E12000004            East Midlands   E06000015
#> 4755      England   E12000004            East Midlands   E06000015
#> 4756      England   E12000004            East Midlands   E06000015
#> 4757      England   E12000004            East Midlands   E06000015
#> 4758      England   E12000004            East Midlands   E06000016
#> 4759      England   E12000004            East Midlands   E06000016
#> 4760      England   E12000004            East Midlands   E06000016
#> 4761      England   E12000004            East Midlands   E06000016
#> 4762      England   E12000004            East Midlands   E06000017
#> 4763      England   E12000004            East Midlands   E06000017
#> 4764      England   E12000004            East Midlands   E06000017
#> 4765      England   E12000004            East Midlands   E06000018
#> 4766      England   E12000004            East Midlands   E06000018
#> 4767      England   E12000004            East Midlands   E06000018
#> 4768      England   E12000004            East Midlands   E06000018
#> 4769      England   E12000004            East Midlands   E06000061
#> 4770      England   E12000004            East Midlands   E06000061
#> 4771      England   E12000004            East Midlands   E06000061
#> 4772      England   E12000004            East Midlands   E06000061
#> 4773      England   E12000004            East Midlands   E06000062
#> 4774      England   E12000004            East Midlands   E06000062
#> 4775      England   E12000004            East Midlands   E06000062
#> 4776      England   E12000004            East Midlands   E06000062
#> 4777      England   E12000004            East Midlands   E10000007
#> 4778      England   E12000004            East Midlands   E10000007
#> 4779      England   E12000004            East Midlands   E10000007
#> 4780      England   E12000004            East Midlands   E10000007
#> 4781      England   E12000004            East Midlands   E10000018
#> 4782      England   E12000004            East Midlands   E10000018
#> 4783      England   E12000004            East Midlands   E10000018
#> 4784      England   E12000004            East Midlands   E10000018
#> 4785      England   E12000004            East Midlands   E10000019
#> 4786      England   E12000004            East Midlands   E10000019
#> 4787      England   E12000004            East Midlands   E10000019
#> 4788      England   E12000004            East Midlands   E10000019
#> 4789      England   E12000004            East Midlands   E10000024
#> 4790      England   E12000004            East Midlands   E10000024
#> 4791      England   E12000004            East Midlands   E10000024
#> 4792      England   E12000004            East Midlands   E10000024
#> 4793      England   E12000005            West Midlands        <NA>
#> 4794      England   E12000005            West Midlands        <NA>
#> 4795      England   E12000005            West Midlands        <NA>
#> 4796      England   E12000005            West Midlands        <NA>
#> 4797      England   E12000005            West Midlands   E06000019
#> 4798      England   E12000005            West Midlands   E06000019
#> 4799      England   E12000005            West Midlands   E06000019
#> 4800      England   E12000005            West Midlands   E06000019
#> 4801      England   E12000005            West Midlands   E06000020
#> 4802      England   E12000005            West Midlands   E06000020
#> 4803      England   E12000005            West Midlands   E06000020
#> 4804      England   E12000005            West Midlands   E06000020
#> 4805      England   E12000005            West Midlands   E06000021
#> 4806      England   E12000005            West Midlands   E06000021
#> 4807      England   E12000005            West Midlands   E06000021
#> 4808      England   E12000005            West Midlands   E06000021
#> 4809      England   E12000005            West Midlands   E06000051
#> 4810      England   E12000005            West Midlands   E06000051
#> 4811      England   E12000005            West Midlands   E06000051
#> 4812      England   E12000005            West Midlands   E06000051
#> 4813      England   E12000005            West Midlands   E08000025
#> 4814      England   E12000005            West Midlands   E08000025
#> 4815      England   E12000005            West Midlands   E08000025
#> 4816      England   E12000005            West Midlands   E08000025
#> 4817      England   E12000005            West Midlands   E08000026
#> 4818      England   E12000005            West Midlands   E08000026
#> 4819      England   E12000005            West Midlands   E08000026
#> 4820      England   E12000005            West Midlands   E08000026
#> 4821      England   E12000005            West Midlands   E08000027
#> 4822      England   E12000005            West Midlands   E08000027
#> 4823      England   E12000005            West Midlands   E08000027
#> 4824      England   E12000005            West Midlands   E08000027
#> 4825      England   E12000005            West Midlands   E08000028
#> 4826      England   E12000005            West Midlands   E08000028
#> 4827      England   E12000005            West Midlands   E08000028
#> 4828      England   E12000005            West Midlands   E08000028
#> 4829      England   E12000005            West Midlands   E08000029
#> 4830      England   E12000005            West Midlands   E08000029
#> 4831      England   E12000005            West Midlands   E08000029
#> 4832      England   E12000005            West Midlands   E08000029
#> 4833      England   E12000005            West Midlands   E08000030
#> 4834      England   E12000005            West Midlands   E08000030
#> 4835      England   E12000005            West Midlands   E08000030
#> 4836      England   E12000005            West Midlands   E08000030
#> 4837      England   E12000005            West Midlands   E08000031
#> 4838      England   E12000005            West Midlands   E08000031
#> 4839      England   E12000005            West Midlands   E08000031
#> 4840      England   E12000005            West Midlands   E08000031
#> 4841      England   E12000005            West Midlands   E10000028
#> 4842      England   E12000005            West Midlands   E10000028
#> 4843      England   E12000005            West Midlands   E10000028
#> 4844      England   E12000005            West Midlands   E10000028
#> 4845      England   E12000005            West Midlands   E10000031
#> 4846      England   E12000005            West Midlands   E10000031
#> 4847      England   E12000005            West Midlands   E10000031
#> 4848      England   E12000005            West Midlands   E10000031
#> 4849      England   E12000005            West Midlands   E10000034
#> 4850      England   E12000005            West Midlands   E10000034
#> 4851      England   E12000005            West Midlands   E10000034
#> 4852      England   E12000005            West Midlands   E10000034
#> 4853      England   E12000006          East of England        <NA>
#> 4854      England   E12000006          East of England        <NA>
#> 4855      England   E12000006          East of England        <NA>
#> 4856      England   E12000006          East of England        <NA>
#> 4857      England   E12000006          East of England   E06000031
#> 4858      England   E12000006          East of England   E06000031
#> 4859      England   E12000006          East of England   E06000031
#> 4860      England   E12000006          East of England   E06000031
#> 4861      England   E12000006          East of England   E06000032
#> 4862      England   E12000006          East of England   E06000032
#> 4863      England   E12000006          East of England   E06000032
#> 4864      England   E12000006          East of England   E06000032
#> 4865      England   E12000006          East of England   E06000033
#> 4866      England   E12000006          East of England   E06000033
#> 4867      England   E12000006          East of England   E06000033
#> 4868      England   E12000006          East of England   E06000033
#> 4869      England   E12000006          East of England   E06000034
#> 4870      England   E12000006          East of England   E06000034
#> 4871      England   E12000006          East of England   E06000034
#> 4872      England   E12000006          East of England   E06000034
#> 4873      England   E12000006          East of England   E06000055
#> 4874      England   E12000006          East of England   E06000055
#> 4875      England   E12000006          East of England   E06000055
#> 4876      England   E12000006          East of England   E06000055
#> 4877      England   E12000006          East of England   E06000056
#> 4878      England   E12000006          East of England   E06000056
#> 4879      England   E12000006          East of England   E06000056
#> 4880      England   E12000006          East of England   E06000056
#> 4881      England   E12000006          East of England   E10000003
#> 4882      England   E12000006          East of England   E10000003
#> 4883      England   E12000006          East of England   E10000003
#> 4884      England   E12000006          East of England   E10000003
#> 4885      England   E12000006          East of England   E10000012
#> 4886      England   E12000006          East of England   E10000012
#> 4887      England   E12000006          East of England   E10000012
#> 4888      England   E12000006          East of England   E10000012
#> 4889      England   E12000006          East of England   E10000015
#> 4890      England   E12000006          East of England   E10000015
#> 4891      England   E12000006          East of England   E10000015
#> 4892      England   E12000006          East of England   E10000015
#> 4893      England   E12000006          East of England   E10000020
#> 4894      England   E12000006          East of England   E10000020
#> 4895      England   E12000006          East of England   E10000020
#> 4896      England   E12000006          East of England   E10000020
#> 4897      England   E12000006          East of England   E10000029
#> 4898      England   E12000006          East of England   E10000029
#> 4899      England   E12000006          East of England   E10000029
#> 4900      England   E12000006          East of England   E10000029
#> 4901      England   E12000007                   London        <NA>
#> 4902      England   E12000007                   London        <NA>
#> 4903      England   E12000007                   London        <NA>
#> 4904      England   E12000007                   London        <NA>
#> 4905      England   E12000007                   London   E09000001
#> 4906      England   E12000007                   London   E09000001
#> 4907      England   E12000007                   London   E09000002
#> 4908      England   E12000007                   London   E09000002
#> 4909      England   E12000007                   London   E09000002
#> 4910      England   E12000007                   London   E09000002
#> 4911      England   E12000007                   London   E09000003
#> 4912      England   E12000007                   London   E09000003
#> 4913      England   E12000007                   London   E09000003
#> 4914      England   E12000007                   London   E09000003
#> 4915      England   E12000007                   London   E09000004
#> 4916      England   E12000007                   London   E09000004
#> 4917      England   E12000007                   London   E09000004
#> 4918      England   E12000007                   London   E09000004
#> 4919      England   E12000007                   London   E09000005
#> 4920      England   E12000007                   London   E09000005
#> 4921      England   E12000007                   London   E09000005
#> 4922      England   E12000007                   London   E09000005
#> 4923      England   E12000007                   London   E09000006
#> 4924      England   E12000007                   London   E09000006
#> 4925      England   E12000007                   London   E09000006
#> 4926      England   E12000007                   London   E09000006
#> 4927      England   E12000007                   London   E09000007
#> 4928      England   E12000007                   London   E09000007
#> 4929      England   E12000007                   London   E09000007
#> 4930      England   E12000007                   London   E09000007
#> 4931      England   E12000007                   London   E09000008
#> 4932      England   E12000007                   London   E09000008
#> 4933      England   E12000007                   London   E09000008
#> 4934      England   E12000007                   London   E09000008
#> 4935      England   E12000007                   London   E09000009
#> 4936      England   E12000007                   London   E09000009
#> 4937      England   E12000007                   London   E09000009
#> 4938      England   E12000007                   London   E09000009
#> 4939      England   E12000007                   London   E09000010
#> 4940      England   E12000007                   London   E09000010
#> 4941      England   E12000007                   London   E09000010
#> 4942      England   E12000007                   London   E09000010
#> 4943      England   E12000007                   London   E09000011
#> 4944      England   E12000007                   London   E09000011
#> 4945      England   E12000007                   London   E09000011
#> 4946      England   E12000007                   London   E09000011
#> 4947      England   E12000007                   London   E09000012
#> 4948      England   E12000007                   London   E09000012
#> 4949      England   E12000007                   London   E09000012
#> 4950      England   E12000007                   London   E09000012
#> 4951      England   E12000007                   London   E09000013
#> 4952      England   E12000007                   London   E09000013
#> 4953      England   E12000007                   London   E09000013
#> 4954      England   E12000007                   London   E09000013
#> 4955      England   E12000007                   London   E09000014
#> 4956      England   E12000007                   London   E09000014
#> 4957      England   E12000007                   London   E09000014
#> 4958      England   E12000007                   London   E09000014
#> 4959      England   E12000007                   London   E09000015
#> 4960      England   E12000007                   London   E09000015
#> 4961      England   E12000007                   London   E09000015
#> 4962      England   E12000007                   London   E09000015
#> 4963      England   E12000007                   London   E09000016
#> 4964      England   E12000007                   London   E09000016
#> 4965      England   E12000007                   London   E09000016
#> 4966      England   E12000007                   London   E09000016
#> 4967      England   E12000007                   London   E09000017
#> 4968      England   E12000007                   London   E09000017
#> 4969      England   E12000007                   London   E09000017
#> 4970      England   E12000007                   London   E09000017
#> 4971      England   E12000007                   London   E09000018
#> 4972      England   E12000007                   London   E09000018
#> 4973      England   E12000007                   London   E09000018
#> 4974      England   E12000007                   London   E09000018
#> 4975      England   E12000007                   London   E09000019
#> 4976      England   E12000007                   London   E09000019
#> 4977      England   E12000007                   London   E09000019
#> 4978      England   E12000007                   London   E09000019
#> 4979      England   E12000007                   London   E09000020
#> 4980      England   E12000007                   London   E09000020
#> 4981      England   E12000007                   London   E09000020
#> 4982      England   E12000007                   London   E09000020
#> 4983      England   E12000007                   London   E09000021
#> 4984      England   E12000007                   London   E09000021
#> 4985      England   E12000007                   London   E09000021
#> 4986      England   E12000007                   London   E09000021
#> 4987      England   E12000007                   London   E09000022
#> 4988      England   E12000007                   London   E09000022
#> 4989      England   E12000007                   London   E09000022
#> 4990      England   E12000007                   London   E09000022
#> 4991      England   E12000007                   London   E09000023
#> 4992      England   E12000007                   London   E09000023
#> 4993      England   E12000007                   London   E09000023
#> 4994      England   E12000007                   London   E09000023
#> 4995      England   E12000007                   London   E09000024
#> 4996      England   E12000007                   London   E09000024
#> 4997      England   E12000007                   London   E09000024
#> 4998      England   E12000007                   London   E09000024
#> 4999      England   E12000007                   London   E09000025
#> 5000      England   E12000007                   London   E09000025
#> 5001      England   E12000007                   London   E09000025
#> 5002      England   E12000007                   London   E09000025
#> 5003      England   E12000007                   London   E09000026
#> 5004      England   E12000007                   London   E09000026
#> 5005      England   E12000007                   London   E09000026
#> 5006      England   E12000007                   London   E09000026
#> 5007      England   E12000007                   London   E09000027
#> 5008      England   E12000007                   London   E09000027
#> 5009      England   E12000007                   London   E09000027
#> 5010      England   E12000007                   London   E09000027
#> 5011      England   E12000007                   London   E09000028
#> 5012      England   E12000007                   London   E09000028
#> 5013      England   E12000007                   London   E09000028
#> 5014      England   E12000007                   London   E09000028
#> 5015      England   E12000007                   London   E09000029
#> 5016      England   E12000007                   London   E09000029
#> 5017      England   E12000007                   London   E09000029
#> 5018      England   E12000007                   London   E09000029
#> 5019      England   E12000007                   London   E09000030
#> 5020      England   E12000007                   London   E09000030
#> 5021      England   E12000007                   London   E09000030
#> 5022      England   E12000007                   London   E09000030
#> 5023      England   E12000007                   London   E09000031
#> 5024      England   E12000007                   London   E09000031
#> 5025      England   E12000007                   London   E09000031
#> 5026      England   E12000007                   London   E09000031
#> 5027      England   E12000007                   London   E09000032
#> 5028      England   E12000007                   London   E09000032
#> 5029      England   E12000007                   London   E09000032
#> 5030      England   E12000007                   London   E09000032
#> 5031      England   E12000007                   London   E09000033
#> 5032      England   E12000007                   London   E09000033
#> 5033      England   E12000007                   London   E09000033
#> 5034      England   E12000007                   London   E09000033
#> 5035      England   E12000008               South East        <NA>
#> 5036      England   E12000008               South East        <NA>
#> 5037      England   E12000008               South East        <NA>
#> 5038      England   E12000008               South East        <NA>
#> 5039      England   E12000008               South East   E06000035
#> 5040      England   E12000008               South East   E06000035
#> 5041      England   E12000008               South East   E06000035
#> 5042      England   E12000008               South East   E06000035
#> 5043      England   E12000008               South East   E06000036
#> 5044      England   E12000008               South East   E06000036
#> 5045      England   E12000008               South East   E06000036
#> 5046      England   E12000008               South East   E06000036
#> 5047      England   E12000008               South East   E06000037
#> 5048      England   E12000008               South East   E06000037
#> 5049      England   E12000008               South East   E06000037
#> 5050      England   E12000008               South East   E06000037
#> 5051      England   E12000008               South East   E06000038
#> 5052      England   E12000008               South East   E06000038
#> 5053      England   E12000008               South East   E06000038
#> 5054      England   E12000008               South East   E06000038
#> 5055      England   E12000008               South East   E06000039
#> 5056      England   E12000008               South East   E06000039
#> 5057      England   E12000008               South East   E06000039
#> 5058      England   E12000008               South East   E06000039
#> 5059      England   E12000008               South East   E06000040
#> 5060      England   E12000008               South East   E06000040
#> 5061      England   E12000008               South East   E06000040
#> 5062      England   E12000008               South East   E06000040
#> 5063      England   E12000008               South East   E06000041
#> 5064      England   E12000008               South East   E06000041
#> 5065      England   E12000008               South East   E06000041
#> 5066      England   E12000008               South East   E06000041
#> 5067      England   E12000008               South East   E06000042
#> 5068      England   E12000008               South East   E06000042
#> 5069      England   E12000008               South East   E06000042
#> 5070      England   E12000008               South East   E06000042
#> 5071      England   E12000008               South East   E06000043
#> 5072      England   E12000008               South East   E06000043
#> 5073      England   E12000008               South East   E06000043
#> 5074      England   E12000008               South East   E06000043
#> 5075      England   E12000008               South East   E06000044
#> 5076      England   E12000008               South East   E06000044
#> 5077      England   E12000008               South East   E06000044
#> 5078      England   E12000008               South East   E06000044
#> 5079      England   E12000008               South East   E06000045
#> 5080      England   E12000008               South East   E06000045
#> 5081      England   E12000008               South East   E06000045
#> 5082      England   E12000008               South East   E06000045
#> 5083      England   E12000008               South East   E06000046
#> 5084      England   E12000008               South East   E06000046
#> 5085      England   E12000008               South East   E06000046
#> 5086      England   E12000008               South East   E06000046
#> 5087      England   E12000008               South East   E06000060
#> 5088      England   E12000008               South East   E06000060
#> 5089      England   E12000008               South East   E06000060
#> 5090      England   E12000008               South East   E06000060
#> 5091      England   E12000008               South East   E10000011
#> 5092      England   E12000008               South East   E10000011
#> 5093      England   E12000008               South East   E10000011
#> 5094      England   E12000008               South East   E10000011
#> 5095      England   E12000008               South East   E10000014
#> 5096      England   E12000008               South East   E10000014
#> 5097      England   E12000008               South East   E10000014
#> 5098      England   E12000008               South East   E10000014
#> 5099      England   E12000008               South East   E10000016
#> 5100      England   E12000008               South East   E10000016
#> 5101      England   E12000008               South East   E10000016
#> 5102      England   E12000008               South East   E10000016
#> 5103      England   E12000008               South East   E10000025
#> 5104      England   E12000008               South East   E10000025
#> 5105      England   E12000008               South East   E10000025
#> 5106      England   E12000008               South East   E10000025
#> 5107      England   E12000008               South East   E10000030
#> 5108      England   E12000008               South East   E10000030
#> 5109      England   E12000008               South East   E10000030
#> 5110      England   E12000008               South East   E10000030
#> 5111      England   E12000008               South East   E10000032
#> 5112      England   E12000008               South East   E10000032
#> 5113      England   E12000008               South East   E10000032
#> 5114      England   E12000008               South East   E10000032
#> 5115      England   E12000009               South West        <NA>
#> 5116      England   E12000009               South West        <NA>
#> 5117      England   E12000009               South West        <NA>
#> 5118      England   E12000009               South West        <NA>
#> 5119      England   E12000009               South West   E06000022
#> 5120      England   E12000009               South West   E06000022
#> 5121      England   E12000009               South West   E06000022
#> 5122      England   E12000009               South West   E06000022
#> 5123      England   E12000009               South West   E06000023
#> 5124      England   E12000009               South West   E06000023
#> 5125      England   E12000009               South West   E06000023
#> 5126      England   E12000009               South West   E06000023
#> 5127      England   E12000009               South West   E06000024
#> 5128      England   E12000009               South West   E06000024
#> 5129      England   E12000009               South West   E06000024
#> 5130      England   E12000009               South West   E06000024
#> 5131      England   E12000009               South West   E06000025
#> 5132      England   E12000009               South West   E06000025
#> 5133      England   E12000009               South West   E06000025
#> 5134      England   E12000009               South West   E06000025
#> 5135      England   E12000009               South West   E06000026
#> 5136      England   E12000009               South West   E06000026
#> 5137      England   E12000009               South West   E06000026
#> 5138      England   E12000009               South West   E06000026
#> 5139      England   E12000009               South West   E06000027
#> 5140      England   E12000009               South West   E06000027
#> 5141      England   E12000009               South West   E06000027
#> 5142      England   E12000009               South West   E06000027
#> 5143      England   E12000009               South West   E06000030
#> 5144      England   E12000009               South West   E06000030
#> 5145      England   E12000009               South West   E06000030
#> 5146      England   E12000009               South West   E06000030
#> 5147      England   E12000009               South West   E06000052
#> 5148      England   E12000009               South West   E06000052
#> 5149      England   E12000009               South West   E06000052
#> 5150      England   E12000009               South West   E06000052
#> 5151      England   E12000009               South West   E06000053
#> 5152      England   E12000009               South West   E06000053
#> 5153      England   E12000009               South West   E06000054
#> 5154      England   E12000009               South West   E06000054
#> 5155      England   E12000009               South West   E06000054
#> 5156      England   E12000009               South West   E06000054
#> 5157      England   E12000009               South West   E06000058
#> 5158      England   E12000009               South West   E06000058
#> 5159      England   E12000009               South West   E06000058
#> 5160      England   E12000009               South West   E06000058
#> 5161      England   E12000009               South West   E06000059
#> 5162      England   E12000009               South West   E06000059
#> 5163      England   E12000009               South West   E06000059
#> 5164      England   E12000009               South West   E06000059
#> 5165      England   E12000009               South West   E06000066
#> 5166      England   E12000009               South West   E06000066
#> 5167      England   E12000009               South West   E06000066
#> 5168      England   E12000009               South West   E06000066
#> 5169      England   E12000009               South West   E10000008
#> 5170      England   E12000009               South West   E10000008
#> 5171      England   E12000009               South West   E10000008
#> 5172      England   E12000009               South West   E10000008
#> 5173      England   E12000009               South West   E10000013
#> 5174      England   E12000009               South West   E10000013
#> 5175      England   E12000009               South West   E10000013
#> 5176      England   E12000009               South West   E10000013
#> 5177      England        <NA>                     <NA>        <NA>
#> 5178      England        <NA>                     <NA>        <NA>
#> 5179      England        <NA>                     <NA>        <NA>
#> 5180      England        <NA>                     <NA>        <NA>
#> 5181      England   E12000001               North East        <NA>
#> 5182      England   E12000001               North East        <NA>
#> 5183      England   E12000001               North East        <NA>
#> 5184      England   E12000001               North East        <NA>
#> 5185      England   E12000001               North East   E06000001
#> 5186      England   E12000001               North East   E06000001
#> 5187      England   E12000001               North East   E06000001
#> 5188      England   E12000001               North East   E06000001
#> 5189      England   E12000001               North East   E06000002
#> 5190      England   E12000001               North East   E06000002
#> 5191      England   E12000001               North East   E06000002
#> 5192      England   E12000001               North East   E06000002
#> 5193      England   E12000001               North East   E06000003
#> 5194      England   E12000001               North East   E06000003
#> 5195      England   E12000001               North East   E06000003
#> 5196      England   E12000001               North East   E06000003
#> 5197      England   E12000001               North East   E06000004
#> 5198      England   E12000001               North East   E06000004
#> 5199      England   E12000001               North East   E06000004
#> 5200      England   E12000001               North East   E06000004
#> 5201      England   E12000001               North East   E06000005
#> 5202      England   E12000001               North East   E06000005
#> 5203      England   E12000001               North East   E06000005
#> 5204      England   E12000001               North East   E06000005
#> 5205      England   E12000001               North East   E06000047
#> 5206      England   E12000001               North East   E06000047
#> 5207      England   E12000001               North East   E06000047
#> 5208      England   E12000001               North East   E06000047
#> 5209      England   E12000001               North East   E06000057
#> 5210      England   E12000001               North East   E06000057
#> 5211      England   E12000001               North East   E06000057
#> 5212      England   E12000001               North East   E06000057
#> 5213      England   E12000001               North East   E08000021
#> 5214      England   E12000001               North East   E08000021
#> 5215      England   E12000001               North East   E08000021
#> 5216      England   E12000001               North East   E08000021
#> 5217      England   E12000001               North East   E08000022
#> 5218      England   E12000001               North East   E08000022
#> 5219      England   E12000001               North East   E08000022
#> 5220      England   E12000001               North East   E08000022
#> 5221      England   E12000001               North East   E08000023
#> 5222      England   E12000001               North East   E08000023
#> 5223      England   E12000001               North East   E08000023
#> 5224      England   E12000001               North East   E08000023
#> 5225      England   E12000001               North East   E08000024
#> 5226      England   E12000001               North East   E08000024
#> 5227      England   E12000001               North East   E08000024
#> 5228      England   E12000001               North East   E08000024
#> 5229      England   E12000001               North East   E08000037
#> 5230      England   E12000001               North East   E08000037
#> 5231      England   E12000001               North East   E08000037
#> 5232      England   E12000001               North East   E08000037
#> 5233      England   E12000002               North West        <NA>
#> 5234      England   E12000002               North West        <NA>
#> 5235      England   E12000002               North West        <NA>
#> 5236      England   E12000002               North West        <NA>
#> 5237      England   E12000002               North West   E06000006
#> 5238      England   E12000002               North West   E06000006
#> 5239      England   E12000002               North West   E06000006
#> 5240      England   E12000002               North West   E06000006
#> 5241      England   E12000002               North West   E06000007
#> 5242      England   E12000002               North West   E06000007
#> 5243      England   E12000002               North West   E06000007
#> 5244      England   E12000002               North West   E06000007
#> 5245      England   E12000002               North West   E06000008
#> 5246      England   E12000002               North West   E06000008
#> 5247      England   E12000002               North West   E06000008
#> 5248      England   E12000002               North West   E06000008
#> 5249      England   E12000002               North West   E06000009
#> 5250      England   E12000002               North West   E06000009
#> 5251      England   E12000002               North West   E06000009
#> 5252      England   E12000002               North West   E06000009
#> 5253      England   E12000002               North West   E06000049
#> 5254      England   E12000002               North West   E06000049
#> 5255      England   E12000002               North West   E06000049
#> 5256      England   E12000002               North West   E06000049
#> 5257      England   E12000002               North West   E06000050
#> 5258      England   E12000002               North West   E06000050
#> 5259      England   E12000002               North West   E06000050
#> 5260      England   E12000002               North West   E06000050
#> 5261      England   E12000002               North West   E06000063
#> 5262      England   E12000002               North West   E06000063
#> 5263      England   E12000002               North West   E06000063
#> 5264      England   E12000002               North West   E06000063
#> 5265      England   E12000002               North West   E06000064
#> 5266      England   E12000002               North West   E06000064
#> 5267      England   E12000002               North West   E06000064
#> 5268      England   E12000002               North West   E06000064
#> 5269      England   E12000002               North West   E08000001
#> 5270      England   E12000002               North West   E08000001
#> 5271      England   E12000002               North West   E08000001
#> 5272      England   E12000002               North West   E08000001
#> 5273      England   E12000002               North West   E08000002
#> 5274      England   E12000002               North West   E08000002
#> 5275      England   E12000002               North West   E08000002
#> 5276      England   E12000002               North West   E08000002
#> 5277      England   E12000002               North West   E08000003
#> 5278      England   E12000002               North West   E08000003
#> 5279      England   E12000002               North West   E08000003
#> 5280      England   E12000002               North West   E08000003
#> 5281      England   E12000002               North West   E08000004
#> 5282      England   E12000002               North West   E08000004
#> 5283      England   E12000002               North West   E08000004
#> 5284      England   E12000002               North West   E08000004
#> 5285      England   E12000002               North West   E08000005
#> 5286      England   E12000002               North West   E08000005
#> 5287      England   E12000002               North West   E08000005
#> 5288      England   E12000002               North West   E08000005
#> 5289      England   E12000002               North West   E08000006
#> 5290      England   E12000002               North West   E08000006
#> 5291      England   E12000002               North West   E08000006
#> 5292      England   E12000002               North West   E08000006
#> 5293      England   E12000002               North West   E08000007
#> 5294      England   E12000002               North West   E08000007
#> 5295      England   E12000002               North West   E08000007
#> 5296      England   E12000002               North West   E08000007
#> 5297      England   E12000002               North West   E08000008
#> 5298      England   E12000002               North West   E08000008
#> 5299      England   E12000002               North West   E08000008
#> 5300      England   E12000002               North West   E08000008
#> 5301      England   E12000002               North West   E08000009
#> 5302      England   E12000002               North West   E08000009
#> 5303      England   E12000002               North West   E08000009
#> 5304      England   E12000002               North West   E08000009
#> 5305      England   E12000002               North West   E08000010
#> 5306      England   E12000002               North West   E08000010
#> 5307      England   E12000002               North West   E08000010
#> 5308      England   E12000002               North West   E08000010
#> 5309      England   E12000002               North West   E08000011
#> 5310      England   E12000002               North West   E08000011
#> 5311      England   E12000002               North West   E08000011
#> 5312      England   E12000002               North West   E08000011
#> 5313      England   E12000002               North West   E08000012
#> 5314      England   E12000002               North West   E08000012
#> 5315      England   E12000002               North West   E08000012
#> 5316      England   E12000002               North West   E08000012
#> 5317      England   E12000002               North West   E08000013
#> 5318      England   E12000002               North West   E08000013
#> 5319      England   E12000002               North West   E08000013
#> 5320      England   E12000002               North West   E08000013
#> 5321      England   E12000002               North West   E08000014
#> 5322      England   E12000002               North West   E08000014
#> 5323      England   E12000002               North West   E08000014
#> 5324      England   E12000002               North West   E08000014
#> 5325      England   E12000002               North West   E08000015
#> 5326      England   E12000002               North West   E08000015
#> 5327      England   E12000002               North West   E08000015
#> 5328      England   E12000002               North West   E08000015
#> 5329      England   E12000002               North West   E10000017
#> 5330      England   E12000002               North West   E10000017
#> 5331      England   E12000002               North West   E10000017
#> 5332      England   E12000002               North West   E10000017
#> 5333      England   E12000003 Yorkshire and The Humber        <NA>
#> 5334      England   E12000003 Yorkshire and The Humber        <NA>
#> 5335      England   E12000003 Yorkshire and The Humber        <NA>
#> 5336      England   E12000003 Yorkshire and The Humber        <NA>
#> 5337      England   E12000003 Yorkshire and The Humber   E06000010
#> 5338      England   E12000003 Yorkshire and The Humber   E06000010
#> 5339      England   E12000003 Yorkshire and The Humber   E06000010
#> 5340      England   E12000003 Yorkshire and The Humber   E06000010
#> 5341      England   E12000003 Yorkshire and The Humber   E06000011
#> 5342      England   E12000003 Yorkshire and The Humber   E06000011
#> 5343      England   E12000003 Yorkshire and The Humber   E06000011
#> 5344      England   E12000003 Yorkshire and The Humber   E06000011
#> 5345      England   E12000003 Yorkshire and The Humber   E06000012
#> 5346      England   E12000003 Yorkshire and The Humber   E06000012
#> 5347      England   E12000003 Yorkshire and The Humber   E06000012
#> 5348      England   E12000003 Yorkshire and The Humber   E06000012
#> 5349      England   E12000003 Yorkshire and The Humber   E06000013
#> 5350      England   E12000003 Yorkshire and The Humber   E06000013
#> 5351      England   E12000003 Yorkshire and The Humber   E06000013
#> 5352      England   E12000003 Yorkshire and The Humber   E06000013
#> 5353      England   E12000003 Yorkshire and The Humber   E06000014
#> 5354      England   E12000003 Yorkshire and The Humber   E06000014
#> 5355      England   E12000003 Yorkshire and The Humber   E06000014
#> 5356      England   E12000003 Yorkshire and The Humber   E06000014
#> 5357      England   E12000003 Yorkshire and The Humber   E06000065
#> 5358      England   E12000003 Yorkshire and The Humber   E06000065
#> 5359      England   E12000003 Yorkshire and The Humber   E06000065
#> 5360      England   E12000003 Yorkshire and The Humber   E06000065
#> 5361      England   E12000003 Yorkshire and The Humber   E08000016
#> 5362      England   E12000003 Yorkshire and The Humber   E08000016
#> 5363      England   E12000003 Yorkshire and The Humber   E08000016
#> 5364      England   E12000003 Yorkshire and The Humber   E08000016
#> 5365      England   E12000003 Yorkshire and The Humber   E08000017
#> 5366      England   E12000003 Yorkshire and The Humber   E08000017
#> 5367      England   E12000003 Yorkshire and The Humber   E08000017
#> 5368      England   E12000003 Yorkshire and The Humber   E08000017
#> 5369      England   E12000003 Yorkshire and The Humber   E08000018
#> 5370      England   E12000003 Yorkshire and The Humber   E08000018
#> 5371      England   E12000003 Yorkshire and The Humber   E08000018
#> 5372      England   E12000003 Yorkshire and The Humber   E08000018
#> 5373      England   E12000003 Yorkshire and The Humber   E08000019
#> 5374      England   E12000003 Yorkshire and The Humber   E08000019
#> 5375      England   E12000003 Yorkshire and The Humber   E08000019
#> 5376      England   E12000003 Yorkshire and The Humber   E08000019
#> 5377      England   E12000003 Yorkshire and The Humber   E08000032
#> 5378      England   E12000003 Yorkshire and The Humber   E08000032
#> 5379      England   E12000003 Yorkshire and The Humber   E08000032
#> 5380      England   E12000003 Yorkshire and The Humber   E08000032
#> 5381      England   E12000003 Yorkshire and The Humber   E08000033
#> 5382      England   E12000003 Yorkshire and The Humber   E08000033
#> 5383      England   E12000003 Yorkshire and The Humber   E08000033
#> 5384      England   E12000003 Yorkshire and The Humber   E08000033
#> 5385      England   E12000003 Yorkshire and The Humber   E08000034
#> 5386      England   E12000003 Yorkshire and The Humber   E08000034
#> 5387      England   E12000003 Yorkshire and The Humber   E08000034
#> 5388      England   E12000003 Yorkshire and The Humber   E08000034
#> 5389      England   E12000003 Yorkshire and The Humber   E08000035
#> 5390      England   E12000003 Yorkshire and The Humber   E08000035
#> 5391      England   E12000003 Yorkshire and The Humber   E08000035
#> 5392      England   E12000003 Yorkshire and The Humber   E08000035
#> 5393      England   E12000003 Yorkshire and The Humber   E08000036
#> 5394      England   E12000003 Yorkshire and The Humber   E08000036
#> 5395      England   E12000003 Yorkshire and The Humber   E08000036
#> 5396      England   E12000003 Yorkshire and The Humber   E08000036
#> 5397      England   E12000004            East Midlands        <NA>
#> 5398      England   E12000004            East Midlands        <NA>
#> 5399      England   E12000004            East Midlands        <NA>
#> 5400      England   E12000004            East Midlands        <NA>
#> 5401      England   E12000004            East Midlands   E06000015
#> 5402      England   E12000004            East Midlands   E06000015
#> 5403      England   E12000004            East Midlands   E06000015
#> 5404      England   E12000004            East Midlands   E06000015
#> 5405      England   E12000004            East Midlands   E06000016
#> 5406      England   E12000004            East Midlands   E06000016
#> 5407      England   E12000004            East Midlands   E06000016
#> 5408      England   E12000004            East Midlands   E06000016
#> 5409      England   E12000004            East Midlands   E06000017
#> 5410      England   E12000004            East Midlands   E06000017
#> 5411      England   E12000004            East Midlands   E06000017
#> 5412      England   E12000004            East Midlands   E06000018
#> 5413      England   E12000004            East Midlands   E06000018
#> 5414      England   E12000004            East Midlands   E06000018
#> 5415      England   E12000004            East Midlands   E06000018
#> 5416      England   E12000004            East Midlands   E06000061
#> 5417      England   E12000004            East Midlands   E06000061
#> 5418      England   E12000004            East Midlands   E06000061
#> 5419      England   E12000004            East Midlands   E06000061
#> 5420      England   E12000004            East Midlands   E06000062
#> 5421      England   E12000004            East Midlands   E06000062
#> 5422      England   E12000004            East Midlands   E06000062
#> 5423      England   E12000004            East Midlands   E06000062
#> 5424      England   E12000004            East Midlands   E10000007
#> 5425      England   E12000004            East Midlands   E10000007
#> 5426      England   E12000004            East Midlands   E10000007
#> 5427      England   E12000004            East Midlands   E10000007
#> 5428      England   E12000004            East Midlands   E10000018
#> 5429      England   E12000004            East Midlands   E10000018
#> 5430      England   E12000004            East Midlands   E10000018
#> 5431      England   E12000004            East Midlands   E10000018
#> 5432      England   E12000004            East Midlands   E10000019
#> 5433      England   E12000004            East Midlands   E10000019
#> 5434      England   E12000004            East Midlands   E10000019
#> 5435      England   E12000004            East Midlands   E10000019
#> 5436      England   E12000004            East Midlands   E10000024
#> 5437      England   E12000004            East Midlands   E10000024
#> 5438      England   E12000004            East Midlands   E10000024
#> 5439      England   E12000004            East Midlands   E10000024
#> 5440      England   E12000005            West Midlands        <NA>
#> 5441      England   E12000005            West Midlands        <NA>
#> 5442      England   E12000005            West Midlands        <NA>
#> 5443      England   E12000005            West Midlands        <NA>
#> 5444      England   E12000005            West Midlands   E06000019
#> 5445      England   E12000005            West Midlands   E06000019
#> 5446      England   E12000005            West Midlands   E06000019
#> 5447      England   E12000005            West Midlands   E06000019
#> 5448      England   E12000005            West Midlands   E06000020
#> 5449      England   E12000005            West Midlands   E06000020
#> 5450      England   E12000005            West Midlands   E06000020
#> 5451      England   E12000005            West Midlands   E06000020
#> 5452      England   E12000005            West Midlands   E06000021
#> 5453      England   E12000005            West Midlands   E06000021
#> 5454      England   E12000005            West Midlands   E06000021
#> 5455      England   E12000005            West Midlands   E06000021
#> 5456      England   E12000005            West Midlands   E06000051
#> 5457      England   E12000005            West Midlands   E06000051
#> 5458      England   E12000005            West Midlands   E06000051
#> 5459      England   E12000005            West Midlands   E06000051
#> 5460      England   E12000005            West Midlands   E08000025
#> 5461      England   E12000005            West Midlands   E08000025
#> 5462      England   E12000005            West Midlands   E08000025
#> 5463      England   E12000005            West Midlands   E08000025
#> 5464      England   E12000005            West Midlands   E08000026
#> 5465      England   E12000005            West Midlands   E08000026
#> 5466      England   E12000005            West Midlands   E08000026
#> 5467      England   E12000005            West Midlands   E08000026
#> 5468      England   E12000005            West Midlands   E08000027
#> 5469      England   E12000005            West Midlands   E08000027
#> 5470      England   E12000005            West Midlands   E08000027
#> 5471      England   E12000005            West Midlands   E08000027
#> 5472      England   E12000005            West Midlands   E08000028
#> 5473      England   E12000005            West Midlands   E08000028
#> 5474      England   E12000005            West Midlands   E08000028
#> 5475      England   E12000005            West Midlands   E08000028
#> 5476      England   E12000005            West Midlands   E08000029
#> 5477      England   E12000005            West Midlands   E08000029
#> 5478      England   E12000005            West Midlands   E08000029
#> 5479      England   E12000005            West Midlands   E08000029
#> 5480      England   E12000005            West Midlands   E08000030
#> 5481      England   E12000005            West Midlands   E08000030
#> 5482      England   E12000005            West Midlands   E08000030
#> 5483      England   E12000005            West Midlands   E08000030
#> 5484      England   E12000005            West Midlands   E08000031
#> 5485      England   E12000005            West Midlands   E08000031
#> 5486      England   E12000005            West Midlands   E08000031
#> 5487      England   E12000005            West Midlands   E08000031
#> 5488      England   E12000005            West Midlands   E10000028
#> 5489      England   E12000005            West Midlands   E10000028
#> 5490      England   E12000005            West Midlands   E10000028
#> 5491      England   E12000005            West Midlands   E10000028
#> 5492      England   E12000005            West Midlands   E10000031
#> 5493      England   E12000005            West Midlands   E10000031
#> 5494      England   E12000005            West Midlands   E10000031
#> 5495      England   E12000005            West Midlands   E10000031
#> 5496      England   E12000005            West Midlands   E10000034
#> 5497      England   E12000005            West Midlands   E10000034
#> 5498      England   E12000005            West Midlands   E10000034
#> 5499      England   E12000005            West Midlands   E10000034
#> 5500      England   E12000006          East of England        <NA>
#> 5501      England   E12000006          East of England        <NA>
#> 5502      England   E12000006          East of England        <NA>
#> 5503      England   E12000006          East of England        <NA>
#> 5504      England   E12000006          East of England   E06000031
#> 5505      England   E12000006          East of England   E06000031
#> 5506      England   E12000006          East of England   E06000031
#> 5507      England   E12000006          East of England   E06000031
#> 5508      England   E12000006          East of England   E06000032
#> 5509      England   E12000006          East of England   E06000032
#> 5510      England   E12000006          East of England   E06000032
#> 5511      England   E12000006          East of England   E06000032
#> 5512      England   E12000006          East of England   E06000033
#> 5513      England   E12000006          East of England   E06000033
#> 5514      England   E12000006          East of England   E06000033
#> 5515      England   E12000006          East of England   E06000033
#> 5516      England   E12000006          East of England   E06000034
#> 5517      England   E12000006          East of England   E06000034
#> 5518      England   E12000006          East of England   E06000034
#> 5519      England   E12000006          East of England   E06000034
#> 5520      England   E12000006          East of England   E06000055
#> 5521      England   E12000006          East of England   E06000055
#> 5522      England   E12000006          East of England   E06000055
#> 5523      England   E12000006          East of England   E06000055
#> 5524      England   E12000006          East of England   E06000056
#> 5525      England   E12000006          East of England   E06000056
#> 5526      England   E12000006          East of England   E06000056
#> 5527      England   E12000006          East of England   E06000056
#> 5528      England   E12000006          East of England   E10000003
#> 5529      England   E12000006          East of England   E10000003
#> 5530      England   E12000006          East of England   E10000003
#> 5531      England   E12000006          East of England   E10000003
#> 5532      England   E12000006          East of England   E10000012
#> 5533      England   E12000006          East of England   E10000012
#> 5534      England   E12000006          East of England   E10000012
#> 5535      England   E12000006          East of England   E10000012
#> 5536      England   E12000006          East of England   E10000015
#> 5537      England   E12000006          East of England   E10000015
#> 5538      England   E12000006          East of England   E10000015
#> 5539      England   E12000006          East of England   E10000015
#> 5540      England   E12000006          East of England   E10000020
#> 5541      England   E12000006          East of England   E10000020
#> 5542      England   E12000006          East of England   E10000020
#> 5543      England   E12000006          East of England   E10000020
#> 5544      England   E12000006          East of England   E10000029
#> 5545      England   E12000006          East of England   E10000029
#> 5546      England   E12000006          East of England   E10000029
#> 5547      England   E12000006          East of England   E10000029
#> 5548      England   E12000007                   London        <NA>
#> 5549      England   E12000007                   London        <NA>
#> 5550      England   E12000007                   London        <NA>
#> 5551      England   E12000007                   London        <NA>
#> 5552      England   E12000007                   London   E09000001
#> 5553      England   E12000007                   London   E09000001
#> 5554      England   E12000007                   London   E09000002
#> 5555      England   E12000007                   London   E09000002
#> 5556      England   E12000007                   London   E09000002
#> 5557      England   E12000007                   London   E09000002
#> 5558      England   E12000007                   London   E09000003
#> 5559      England   E12000007                   London   E09000003
#> 5560      England   E12000007                   London   E09000003
#> 5561      England   E12000007                   London   E09000003
#> 5562      England   E12000007                   London   E09000004
#> 5563      England   E12000007                   London   E09000004
#> 5564      England   E12000007                   London   E09000004
#> 5565      England   E12000007                   London   E09000004
#> 5566      England   E12000007                   London   E09000005
#> 5567      England   E12000007                   London   E09000005
#> 5568      England   E12000007                   London   E09000005
#> 5569      England   E12000007                   London   E09000005
#> 5570      England   E12000007                   London   E09000006
#> 5571      England   E12000007                   London   E09000006
#> 5572      England   E12000007                   London   E09000006
#> 5573      England   E12000007                   London   E09000006
#> 5574      England   E12000007                   London   E09000007
#> 5575      England   E12000007                   London   E09000007
#> 5576      England   E12000007                   London   E09000007
#> 5577      England   E12000007                   London   E09000007
#> 5578      England   E12000007                   London   E09000008
#> 5579      England   E12000007                   London   E09000008
#> 5580      England   E12000007                   London   E09000008
#> 5581      England   E12000007                   London   E09000008
#> 5582      England   E12000007                   London   E09000009
#> 5583      England   E12000007                   London   E09000009
#> 5584      England   E12000007                   London   E09000009
#> 5585      England   E12000007                   London   E09000009
#> 5586      England   E12000007                   London   E09000010
#> 5587      England   E12000007                   London   E09000010
#> 5588      England   E12000007                   London   E09000010
#> 5589      England   E12000007                   London   E09000010
#> 5590      England   E12000007                   London   E09000011
#> 5591      England   E12000007                   London   E09000011
#> 5592      England   E12000007                   London   E09000011
#> 5593      England   E12000007                   London   E09000011
#> 5594      England   E12000007                   London   E09000012
#> 5595      England   E12000007                   London   E09000012
#> 5596      England   E12000007                   London   E09000012
#> 5597      England   E12000007                   London   E09000012
#> 5598      England   E12000007                   London   E09000013
#> 5599      England   E12000007                   London   E09000013
#> 5600      England   E12000007                   London   E09000013
#> 5601      England   E12000007                   London   E09000013
#> 5602      England   E12000007                   London   E09000014
#> 5603      England   E12000007                   London   E09000014
#> 5604      England   E12000007                   London   E09000014
#> 5605      England   E12000007                   London   E09000014
#> 5606      England   E12000007                   London   E09000015
#> 5607      England   E12000007                   London   E09000015
#> 5608      England   E12000007                   London   E09000015
#> 5609      England   E12000007                   London   E09000015
#> 5610      England   E12000007                   London   E09000016
#> 5611      England   E12000007                   London   E09000016
#> 5612      England   E12000007                   London   E09000016
#> 5613      England   E12000007                   London   E09000016
#> 5614      England   E12000007                   London   E09000017
#> 5615      England   E12000007                   London   E09000017
#> 5616      England   E12000007                   London   E09000017
#> 5617      England   E12000007                   London   E09000017
#> 5618      England   E12000007                   London   E09000018
#> 5619      England   E12000007                   London   E09000018
#> 5620      England   E12000007                   London   E09000018
#> 5621      England   E12000007                   London   E09000018
#> 5622      England   E12000007                   London   E09000019
#> 5623      England   E12000007                   London   E09000019
#> 5624      England   E12000007                   London   E09000019
#> 5625      England   E12000007                   London   E09000019
#> 5626      England   E12000007                   London   E09000020
#> 5627      England   E12000007                   London   E09000020
#> 5628      England   E12000007                   London   E09000020
#> 5629      England   E12000007                   London   E09000020
#> 5630      England   E12000007                   London   E09000021
#> 5631      England   E12000007                   London   E09000021
#> 5632      England   E12000007                   London   E09000021
#> 5633      England   E12000007                   London   E09000021
#> 5634      England   E12000007                   London   E09000022
#> 5635      England   E12000007                   London   E09000022
#> 5636      England   E12000007                   London   E09000022
#> 5637      England   E12000007                   London   E09000022
#> 5638      England   E12000007                   London   E09000023
#> 5639      England   E12000007                   London   E09000023
#> 5640      England   E12000007                   London   E09000023
#> 5641      England   E12000007                   London   E09000023
#> 5642      England   E12000007                   London   E09000024
#> 5643      England   E12000007                   London   E09000024
#> 5644      England   E12000007                   London   E09000024
#> 5645      England   E12000007                   London   E09000024
#> 5646      England   E12000007                   London   E09000025
#> 5647      England   E12000007                   London   E09000025
#> 5648      England   E12000007                   London   E09000025
#> 5649      England   E12000007                   London   E09000025
#> 5650      England   E12000007                   London   E09000026
#> 5651      England   E12000007                   London   E09000026
#> 5652      England   E12000007                   London   E09000026
#> 5653      England   E12000007                   London   E09000026
#> 5654      England   E12000007                   London   E09000027
#> 5655      England   E12000007                   London   E09000027
#> 5656      England   E12000007                   London   E09000027
#> 5657      England   E12000007                   London   E09000027
#> 5658      England   E12000007                   London   E09000028
#> 5659      England   E12000007                   London   E09000028
#> 5660      England   E12000007                   London   E09000028
#> 5661      England   E12000007                   London   E09000028
#> 5662      England   E12000007                   London   E09000029
#> 5663      England   E12000007                   London   E09000029
#> 5664      England   E12000007                   London   E09000029
#> 5665      England   E12000007                   London   E09000029
#> 5666      England   E12000007                   London   E09000030
#> 5667      England   E12000007                   London   E09000030
#> 5668      England   E12000007                   London   E09000030
#> 5669      England   E12000007                   London   E09000030
#> 5670      England   E12000007                   London   E09000031
#> 5671      England   E12000007                   London   E09000031
#> 5672      England   E12000007                   London   E09000031
#> 5673      England   E12000007                   London   E09000031
#> 5674      England   E12000007                   London   E09000032
#> 5675      England   E12000007                   London   E09000032
#> 5676      England   E12000007                   London   E09000032
#> 5677      England   E12000007                   London   E09000032
#> 5678      England   E12000007                   London   E09000033
#> 5679      England   E12000007                   London   E09000033
#> 5680      England   E12000007                   London   E09000033
#> 5681      England   E12000007                   London   E09000033
#> 5682      England   E12000008               South East        <NA>
#> 5683      England   E12000008               South East        <NA>
#> 5684      England   E12000008               South East        <NA>
#> 5685      England   E12000008               South East        <NA>
#> 5686      England   E12000008               South East   E06000035
#> 5687      England   E12000008               South East   E06000035
#> 5688      England   E12000008               South East   E06000035
#> 5689      England   E12000008               South East   E06000035
#> 5690      England   E12000008               South East   E06000036
#> 5691      England   E12000008               South East   E06000036
#> 5692      England   E12000008               South East   E06000036
#> 5693      England   E12000008               South East   E06000036
#> 5694      England   E12000008               South East   E06000037
#> 5695      England   E12000008               South East   E06000037
#> 5696      England   E12000008               South East   E06000037
#> 5697      England   E12000008               South East   E06000037
#> 5698      England   E12000008               South East   E06000038
#> 5699      England   E12000008               South East   E06000038
#> 5700      England   E12000008               South East   E06000038
#> 5701      England   E12000008               South East   E06000038
#> 5702      England   E12000008               South East   E06000039
#> 5703      England   E12000008               South East   E06000039
#> 5704      England   E12000008               South East   E06000039
#> 5705      England   E12000008               South East   E06000039
#> 5706      England   E12000008               South East   E06000040
#> 5707      England   E12000008               South East   E06000040
#> 5708      England   E12000008               South East   E06000040
#> 5709      England   E12000008               South East   E06000040
#> 5710      England   E12000008               South East   E06000041
#> 5711      England   E12000008               South East   E06000041
#> 5712      England   E12000008               South East   E06000041
#> 5713      England   E12000008               South East   E06000041
#> 5714      England   E12000008               South East   E06000042
#> 5715      England   E12000008               South East   E06000042
#> 5716      England   E12000008               South East   E06000042
#> 5717      England   E12000008               South East   E06000042
#> 5718      England   E12000008               South East   E06000043
#> 5719      England   E12000008               South East   E06000043
#> 5720      England   E12000008               South East   E06000043
#> 5721      England   E12000008               South East   E06000043
#> 5722      England   E12000008               South East   E06000044
#> 5723      England   E12000008               South East   E06000044
#> 5724      England   E12000008               South East   E06000044
#> 5725      England   E12000008               South East   E06000044
#> 5726      England   E12000008               South East   E06000045
#> 5727      England   E12000008               South East   E06000045
#> 5728      England   E12000008               South East   E06000045
#> 5729      England   E12000008               South East   E06000045
#> 5730      England   E12000008               South East   E06000046
#> 5731      England   E12000008               South East   E06000046
#> 5732      England   E12000008               South East   E06000046
#> 5733      England   E12000008               South East   E06000046
#> 5734      England   E12000008               South East   E06000060
#> 5735      England   E12000008               South East   E06000060
#> 5736      England   E12000008               South East   E06000060
#> 5737      England   E12000008               South East   E06000060
#> 5738      England   E12000008               South East   E10000011
#> 5739      England   E12000008               South East   E10000011
#> 5740      England   E12000008               South East   E10000011
#> 5741      England   E12000008               South East   E10000011
#> 5742      England   E12000008               South East   E10000014
#> 5743      England   E12000008               South East   E10000014
#> 5744      England   E12000008               South East   E10000014
#> 5745      England   E12000008               South East   E10000014
#> 5746      England   E12000008               South East   E10000016
#> 5747      England   E12000008               South East   E10000016
#> 5748      England   E12000008               South East   E10000016
#> 5749      England   E12000008               South East   E10000016
#> 5750      England   E12000008               South East   E10000025
#> 5751      England   E12000008               South East   E10000025
#> 5752      England   E12000008               South East   E10000025
#> 5753      England   E12000008               South East   E10000025
#> 5754      England   E12000008               South East   E10000030
#> 5755      England   E12000008               South East   E10000030
#> 5756      England   E12000008               South East   E10000030
#> 5757      England   E12000008               South East   E10000030
#> 5758      England   E12000008               South East   E10000032
#> 5759      England   E12000008               South East   E10000032
#> 5760      England   E12000008               South East   E10000032
#> 5761      England   E12000008               South East   E10000032
#> 5762      England   E12000009               South West        <NA>
#> 5763      England   E12000009               South West        <NA>
#> 5764      England   E12000009               South West        <NA>
#> 5765      England   E12000009               South West        <NA>
#> 5766      England   E12000009               South West   E06000022
#> 5767      England   E12000009               South West   E06000022
#> 5768      England   E12000009               South West   E06000022
#> 5769      England   E12000009               South West   E06000022
#> 5770      England   E12000009               South West   E06000023
#> 5771      England   E12000009               South West   E06000023
#> 5772      England   E12000009               South West   E06000023
#> 5773      England   E12000009               South West   E06000023
#> 5774      England   E12000009               South West   E06000024
#> 5775      England   E12000009               South West   E06000024
#> 5776      England   E12000009               South West   E06000024
#> 5777      England   E12000009               South West   E06000024
#> 5778      England   E12000009               South West   E06000025
#> 5779      England   E12000009               South West   E06000025
#> 5780      England   E12000009               South West   E06000025
#> 5781      England   E12000009               South West   E06000025
#> 5782      England   E12000009               South West   E06000026
#> 5783      England   E12000009               South West   E06000026
#> 5784      England   E12000009               South West   E06000026
#> 5785      England   E12000009               South West   E06000026
#> 5786      England   E12000009               South West   E06000027
#> 5787      England   E12000009               South West   E06000027
#> 5788      England   E12000009               South West   E06000027
#> 5789      England   E12000009               South West   E06000027
#> 5790      England   E12000009               South West   E06000030
#> 5791      England   E12000009               South West   E06000030
#> 5792      England   E12000009               South West   E06000030
#> 5793      England   E12000009               South West   E06000030
#> 5794      England   E12000009               South West   E06000052
#> 5795      England   E12000009               South West   E06000052
#> 5796      England   E12000009               South West   E06000052
#> 5797      England   E12000009               South West   E06000052
#> 5798      England   E12000009               South West   E06000053
#> 5799      England   E12000009               South West   E06000053
#> 5800      England   E12000009               South West   E06000054
#> 5801      England   E12000009               South West   E06000054
#> 5802      England   E12000009               South West   E06000054
#> 5803      England   E12000009               South West   E06000054
#> 5804      England   E12000009               South West   E06000058
#> 5805      England   E12000009               South West   E06000058
#> 5806      England   E12000009               South West   E06000058
#> 5807      England   E12000009               South West   E06000058
#> 5808      England   E12000009               South West   E06000059
#> 5809      England   E12000009               South West   E06000059
#> 5810      England   E12000009               South West   E06000059
#> 5811      England   E12000009               South West   E06000059
#> 5812      England   E12000009               South West   E06000066
#> 5813      England   E12000009               South West   E06000066
#> 5814      England   E12000009               South West   E06000066
#> 5815      England   E12000009               South West   E06000066
#> 5816      England   E12000009               South West   E10000008
#> 5817      England   E12000009               South West   E10000008
#> 5818      England   E12000009               South West   E10000008
#> 5819      England   E12000009               South West   E10000008
#> 5820      England   E12000009               South West   E10000013
#> 5821      England   E12000009               South West   E10000013
#> 5822      England   E12000009               South West   E10000013
#> 5823      England   E12000009               South West   E10000013
#> 5824      England        <NA>                     <NA>        <NA>
#> 5825      England        <NA>                     <NA>        <NA>
#> 5826      England        <NA>                     <NA>        <NA>
#> 5827      England        <NA>                     <NA>        <NA>
#> 5828      England   E12000001               North East        <NA>
#> 5829      England   E12000001               North East        <NA>
#> 5830      England   E12000001               North East        <NA>
#> 5831      England   E12000001               North East        <NA>
#> 5832      England   E12000001               North East   E06000001
#> 5833      England   E12000001               North East   E06000001
#> 5834      England   E12000001               North East   E06000001
#> 5835      England   E12000001               North East   E06000001
#> 5836      England   E12000001               North East   E06000002
#> 5837      England   E12000001               North East   E06000002
#> 5838      England   E12000001               North East   E06000002
#> 5839      England   E12000001               North East   E06000002
#> 5840      England   E12000001               North East   E06000003
#> 5841      England   E12000001               North East   E06000003
#> 5842      England   E12000001               North East   E06000003
#> 5843      England   E12000001               North East   E06000003
#> 5844      England   E12000001               North East   E06000004
#> 5845      England   E12000001               North East   E06000004
#> 5846      England   E12000001               North East   E06000004
#> 5847      England   E12000001               North East   E06000004
#> 5848      England   E12000001               North East   E06000005
#> 5849      England   E12000001               North East   E06000005
#> 5850      England   E12000001               North East   E06000005
#> 5851      England   E12000001               North East   E06000005
#> 5852      England   E12000001               North East   E06000047
#> 5853      England   E12000001               North East   E06000047
#> 5854      England   E12000001               North East   E06000047
#> 5855      England   E12000001               North East   E06000047
#> 5856      England   E12000001               North East   E06000057
#> 5857      England   E12000001               North East   E06000057
#> 5858      England   E12000001               North East   E06000057
#> 5859      England   E12000001               North East   E06000057
#> 5860      England   E12000001               North East   E08000021
#> 5861      England   E12000001               North East   E08000021
#> 5862      England   E12000001               North East   E08000021
#> 5863      England   E12000001               North East   E08000021
#> 5864      England   E12000001               North East   E08000022
#> 5865      England   E12000001               North East   E08000022
#> 5866      England   E12000001               North East   E08000022
#> 5867      England   E12000001               North East   E08000022
#> 5868      England   E12000001               North East   E08000023
#> 5869      England   E12000001               North East   E08000023
#> 5870      England   E12000001               North East   E08000023
#> 5871      England   E12000001               North East   E08000023
#> 5872      England   E12000001               North East   E08000024
#> 5873      England   E12000001               North East   E08000024
#> 5874      England   E12000001               North East   E08000024
#> 5875      England   E12000001               North East   E08000024
#> 5876      England   E12000001               North East   E08000037
#> 5877      England   E12000001               North East   E08000037
#> 5878      England   E12000001               North East   E08000037
#> 5879      England   E12000001               North East   E08000037
#> 5880      England   E12000002               North West        <NA>
#> 5881      England   E12000002               North West        <NA>
#> 5882      England   E12000002               North West        <NA>
#> 5883      England   E12000002               North West        <NA>
#> 5884      England   E12000002               North West   E06000006
#> 5885      England   E12000002               North West   E06000006
#> 5886      England   E12000002               North West   E06000006
#> 5887      England   E12000002               North West   E06000006
#> 5888      England   E12000002               North West   E06000007
#> 5889      England   E12000002               North West   E06000007
#> 5890      England   E12000002               North West   E06000007
#> 5891      England   E12000002               North West   E06000007
#> 5892      England   E12000002               North West   E06000008
#> 5893      England   E12000002               North West   E06000008
#> 5894      England   E12000002               North West   E06000008
#> 5895      England   E12000002               North West   E06000008
#> 5896      England   E12000002               North West   E06000009
#> 5897      England   E12000002               North West   E06000009
#> 5898      England   E12000002               North West   E06000009
#> 5899      England   E12000002               North West   E06000009
#> 5900      England   E12000002               North West   E06000049
#> 5901      England   E12000002               North West   E06000049
#> 5902      England   E12000002               North West   E06000049
#> 5903      England   E12000002               North West   E06000049
#> 5904      England   E12000002               North West   E06000050
#> 5905      England   E12000002               North West   E06000050
#> 5906      England   E12000002               North West   E06000050
#> 5907      England   E12000002               North West   E06000050
#> 5908      England   E12000002               North West   E06000063
#> 5909      England   E12000002               North West   E06000063
#> 5910      England   E12000002               North West   E06000063
#> 5911      England   E12000002               North West   E06000063
#> 5912      England   E12000002               North West   E06000064
#> 5913      England   E12000002               North West   E06000064
#> 5914      England   E12000002               North West   E06000064
#> 5915      England   E12000002               North West   E06000064
#> 5916      England   E12000002               North West   E08000001
#> 5917      England   E12000002               North West   E08000001
#> 5918      England   E12000002               North West   E08000001
#> 5919      England   E12000002               North West   E08000001
#> 5920      England   E12000002               North West   E08000002
#> 5921      England   E12000002               North West   E08000002
#> 5922      England   E12000002               North West   E08000002
#> 5923      England   E12000002               North West   E08000002
#> 5924      England   E12000002               North West   E08000003
#> 5925      England   E12000002               North West   E08000003
#> 5926      England   E12000002               North West   E08000003
#> 5927      England   E12000002               North West   E08000003
#> 5928      England   E12000002               North West   E08000004
#> 5929      England   E12000002               North West   E08000004
#> 5930      England   E12000002               North West   E08000004
#> 5931      England   E12000002               North West   E08000004
#> 5932      England   E12000002               North West   E08000005
#> 5933      England   E12000002               North West   E08000005
#> 5934      England   E12000002               North West   E08000005
#> 5935      England   E12000002               North West   E08000005
#> 5936      England   E12000002               North West   E08000006
#> 5937      England   E12000002               North West   E08000006
#> 5938      England   E12000002               North West   E08000006
#> 5939      England   E12000002               North West   E08000006
#> 5940      England   E12000002               North West   E08000007
#> 5941      England   E12000002               North West   E08000007
#> 5942      England   E12000002               North West   E08000007
#> 5943      England   E12000002               North West   E08000007
#> 5944      England   E12000002               North West   E08000008
#> 5945      England   E12000002               North West   E08000008
#> 5946      England   E12000002               North West   E08000008
#> 5947      England   E12000002               North West   E08000008
#> 5948      England   E12000002               North West   E08000009
#> 5949      England   E12000002               North West   E08000009
#> 5950      England   E12000002               North West   E08000009
#> 5951      England   E12000002               North West   E08000009
#> 5952      England   E12000002               North West   E08000010
#> 5953      England   E12000002               North West   E08000010
#> 5954      England   E12000002               North West   E08000010
#> 5955      England   E12000002               North West   E08000010
#> 5956      England   E12000002               North West   E08000011
#> 5957      England   E12000002               North West   E08000011
#> 5958      England   E12000002               North West   E08000011
#> 5959      England   E12000002               North West   E08000011
#> 5960      England   E12000002               North West   E08000012
#> 5961      England   E12000002               North West   E08000012
#> 5962      England   E12000002               North West   E08000012
#> 5963      England   E12000002               North West   E08000012
#> 5964      England   E12000002               North West   E08000013
#> 5965      England   E12000002               North West   E08000013
#> 5966      England   E12000002               North West   E08000013
#> 5967      England   E12000002               North West   E08000013
#> 5968      England   E12000002               North West   E08000014
#> 5969      England   E12000002               North West   E08000014
#> 5970      England   E12000002               North West   E08000014
#> 5971      England   E12000002               North West   E08000014
#> 5972      England   E12000002               North West   E08000015
#> 5973      England   E12000002               North West   E08000015
#> 5974      England   E12000002               North West   E08000015
#> 5975      England   E12000002               North West   E08000015
#> 5976      England   E12000002               North West   E10000017
#> 5977      England   E12000002               North West   E10000017
#> 5978      England   E12000002               North West   E10000017
#> 5979      England   E12000002               North West   E10000017
#> 5980      England   E12000003 Yorkshire and The Humber        <NA>
#> 5981      England   E12000003 Yorkshire and The Humber        <NA>
#> 5982      England   E12000003 Yorkshire and The Humber        <NA>
#> 5983      England   E12000003 Yorkshire and The Humber        <NA>
#> 5984      England   E12000003 Yorkshire and The Humber   E06000010
#> 5985      England   E12000003 Yorkshire and The Humber   E06000010
#> 5986      England   E12000003 Yorkshire and The Humber   E06000010
#> 5987      England   E12000003 Yorkshire and The Humber   E06000010
#> 5988      England   E12000003 Yorkshire and The Humber   E06000011
#> 5989      England   E12000003 Yorkshire and The Humber   E06000011
#> 5990      England   E12000003 Yorkshire and The Humber   E06000011
#> 5991      England   E12000003 Yorkshire and The Humber   E06000011
#> 5992      England   E12000003 Yorkshire and The Humber   E06000012
#> 5993      England   E12000003 Yorkshire and The Humber   E06000012
#> 5994      England   E12000003 Yorkshire and The Humber   E06000012
#> 5995      England   E12000003 Yorkshire and The Humber   E06000012
#> 5996      England   E12000003 Yorkshire and The Humber   E06000013
#> 5997      England   E12000003 Yorkshire and The Humber   E06000013
#> 5998      England   E12000003 Yorkshire and The Humber   E06000013
#> 5999      England   E12000003 Yorkshire and The Humber   E06000013
#> 6000      England   E12000003 Yorkshire and The Humber   E06000014
#> 6001      England   E12000003 Yorkshire and The Humber   E06000014
#> 6002      England   E12000003 Yorkshire and The Humber   E06000014
#> 6003      England   E12000003 Yorkshire and The Humber   E06000014
#> 6004      England   E12000003 Yorkshire and The Humber   E06000065
#> 6005      England   E12000003 Yorkshire and The Humber   E06000065
#> 6006      England   E12000003 Yorkshire and The Humber   E06000065
#> 6007      England   E12000003 Yorkshire and The Humber   E06000065
#> 6008      England   E12000003 Yorkshire and The Humber   E08000016
#> 6009      England   E12000003 Yorkshire and The Humber   E08000016
#> 6010      England   E12000003 Yorkshire and The Humber   E08000016
#> 6011      England   E12000003 Yorkshire and The Humber   E08000016
#> 6012      England   E12000003 Yorkshire and The Humber   E08000017
#> 6013      England   E12000003 Yorkshire and The Humber   E08000017
#> 6014      England   E12000003 Yorkshire and The Humber   E08000017
#> 6015      England   E12000003 Yorkshire and The Humber   E08000017
#> 6016      England   E12000003 Yorkshire and The Humber   E08000018
#> 6017      England   E12000003 Yorkshire and The Humber   E08000018
#> 6018      England   E12000003 Yorkshire and The Humber   E08000018
#> 6019      England   E12000003 Yorkshire and The Humber   E08000018
#> 6020      England   E12000003 Yorkshire and The Humber   E08000019
#> 6021      England   E12000003 Yorkshire and The Humber   E08000019
#> 6022      England   E12000003 Yorkshire and The Humber   E08000019
#> 6023      England   E12000003 Yorkshire and The Humber   E08000019
#> 6024      England   E12000003 Yorkshire and The Humber   E08000032
#> 6025      England   E12000003 Yorkshire and The Humber   E08000032
#> 6026      England   E12000003 Yorkshire and The Humber   E08000032
#> 6027      England   E12000003 Yorkshire and The Humber   E08000032
#> 6028      England   E12000003 Yorkshire and The Humber   E08000033
#> 6029      England   E12000003 Yorkshire and The Humber   E08000033
#> 6030      England   E12000003 Yorkshire and The Humber   E08000033
#> 6031      England   E12000003 Yorkshire and The Humber   E08000033
#> 6032      England   E12000003 Yorkshire and The Humber   E08000034
#> 6033      England   E12000003 Yorkshire and The Humber   E08000034
#> 6034      England   E12000003 Yorkshire and The Humber   E08000034
#> 6035      England   E12000003 Yorkshire and The Humber   E08000034
#> 6036      England   E12000003 Yorkshire and The Humber   E08000035
#> 6037      England   E12000003 Yorkshire and The Humber   E08000035
#> 6038      England   E12000003 Yorkshire and The Humber   E08000035
#> 6039      England   E12000003 Yorkshire and The Humber   E08000035
#> 6040      England   E12000003 Yorkshire and The Humber   E08000036
#> 6041      England   E12000003 Yorkshire and The Humber   E08000036
#> 6042      England   E12000003 Yorkshire and The Humber   E08000036
#> 6043      England   E12000003 Yorkshire and The Humber   E08000036
#> 6044      England   E12000004            East Midlands        <NA>
#> 6045      England   E12000004            East Midlands        <NA>
#> 6046      England   E12000004            East Midlands        <NA>
#> 6047      England   E12000004            East Midlands        <NA>
#> 6048      England   E12000004            East Midlands   E06000015
#> 6049      England   E12000004            East Midlands   E06000015
#> 6050      England   E12000004            East Midlands   E06000015
#> 6051      England   E12000004            East Midlands   E06000015
#> 6052      England   E12000004            East Midlands   E06000016
#> 6053      England   E12000004            East Midlands   E06000016
#> 6054      England   E12000004            East Midlands   E06000016
#> 6055      England   E12000004            East Midlands   E06000016
#> 6056      England   E12000004            East Midlands   E06000017
#> 6057      England   E12000004            East Midlands   E06000017
#> 6058      England   E12000004            East Midlands   E06000017
#> 6059      England   E12000004            East Midlands   E06000018
#> 6060      England   E12000004            East Midlands   E06000018
#> 6061      England   E12000004            East Midlands   E06000018
#> 6062      England   E12000004            East Midlands   E06000018
#> 6063      England   E12000004            East Midlands   E06000061
#> 6064      England   E12000004            East Midlands   E06000061
#> 6065      England   E12000004            East Midlands   E06000061
#> 6066      England   E12000004            East Midlands   E06000061
#> 6067      England   E12000004            East Midlands   E06000062
#> 6068      England   E12000004            East Midlands   E06000062
#> 6069      England   E12000004            East Midlands   E06000062
#> 6070      England   E12000004            East Midlands   E06000062
#> 6071      England   E12000004            East Midlands   E10000007
#> 6072      England   E12000004            East Midlands   E10000007
#> 6073      England   E12000004            East Midlands   E10000007
#> 6074      England   E12000004            East Midlands   E10000007
#> 6075      England   E12000004            East Midlands   E10000018
#> 6076      England   E12000004            East Midlands   E10000018
#> 6077      England   E12000004            East Midlands   E10000018
#> 6078      England   E12000004            East Midlands   E10000018
#> 6079      England   E12000004            East Midlands   E10000019
#> 6080      England   E12000004            East Midlands   E10000019
#> 6081      England   E12000004            East Midlands   E10000019
#> 6082      England   E12000004            East Midlands   E10000019
#> 6083      England   E12000004            East Midlands   E10000024
#> 6084      England   E12000004            East Midlands   E10000024
#> 6085      England   E12000004            East Midlands   E10000024
#> 6086      England   E12000004            East Midlands   E10000024
#> 6087      England   E12000005            West Midlands        <NA>
#> 6088      England   E12000005            West Midlands        <NA>
#> 6089      England   E12000005            West Midlands        <NA>
#> 6090      England   E12000005            West Midlands        <NA>
#> 6091      England   E12000005            West Midlands   E06000019
#> 6092      England   E12000005            West Midlands   E06000019
#> 6093      England   E12000005            West Midlands   E06000019
#> 6094      England   E12000005            West Midlands   E06000019
#> 6095      England   E12000005            West Midlands   E06000020
#> 6096      England   E12000005            West Midlands   E06000020
#> 6097      England   E12000005            West Midlands   E06000020
#> 6098      England   E12000005            West Midlands   E06000020
#> 6099      England   E12000005            West Midlands   E06000021
#> 6100      England   E12000005            West Midlands   E06000021
#> 6101      England   E12000005            West Midlands   E06000021
#> 6102      England   E12000005            West Midlands   E06000021
#> 6103      England   E12000005            West Midlands   E06000051
#> 6104      England   E12000005            West Midlands   E06000051
#> 6105      England   E12000005            West Midlands   E06000051
#> 6106      England   E12000005            West Midlands   E06000051
#> 6107      England   E12000005            West Midlands   E08000025
#> 6108      England   E12000005            West Midlands   E08000025
#> 6109      England   E12000005            West Midlands   E08000025
#> 6110      England   E12000005            West Midlands   E08000025
#> 6111      England   E12000005            West Midlands   E08000026
#> 6112      England   E12000005            West Midlands   E08000026
#> 6113      England   E12000005            West Midlands   E08000026
#> 6114      England   E12000005            West Midlands   E08000026
#> 6115      England   E12000005            West Midlands   E08000027
#> 6116      England   E12000005            West Midlands   E08000027
#> 6117      England   E12000005            West Midlands   E08000027
#> 6118      England   E12000005            West Midlands   E08000027
#> 6119      England   E12000005            West Midlands   E08000028
#> 6120      England   E12000005            West Midlands   E08000028
#> 6121      England   E12000005            West Midlands   E08000028
#> 6122      England   E12000005            West Midlands   E08000028
#> 6123      England   E12000005            West Midlands   E08000029
#> 6124      England   E12000005            West Midlands   E08000029
#> 6125      England   E12000005            West Midlands   E08000029
#> 6126      England   E12000005            West Midlands   E08000029
#> 6127      England   E12000005            West Midlands   E08000030
#> 6128      England   E12000005            West Midlands   E08000030
#> 6129      England   E12000005            West Midlands   E08000030
#> 6130      England   E12000005            West Midlands   E08000030
#> 6131      England   E12000005            West Midlands   E08000031
#> 6132      England   E12000005            West Midlands   E08000031
#> 6133      England   E12000005            West Midlands   E08000031
#> 6134      England   E12000005            West Midlands   E08000031
#> 6135      England   E12000005            West Midlands   E10000028
#> 6136      England   E12000005            West Midlands   E10000028
#> 6137      England   E12000005            West Midlands   E10000028
#> 6138      England   E12000005            West Midlands   E10000028
#> 6139      England   E12000005            West Midlands   E10000031
#> 6140      England   E12000005            West Midlands   E10000031
#> 6141      England   E12000005            West Midlands   E10000031
#> 6142      England   E12000005            West Midlands   E10000031
#> 6143      England   E12000005            West Midlands   E10000034
#> 6144      England   E12000005            West Midlands   E10000034
#> 6145      England   E12000005            West Midlands   E10000034
#> 6146      England   E12000005            West Midlands   E10000034
#> 6147      England   E12000006          East of England        <NA>
#> 6148      England   E12000006          East of England        <NA>
#> 6149      England   E12000006          East of England        <NA>
#> 6150      England   E12000006          East of England        <NA>
#> 6151      England   E12000006          East of England   E06000031
#> 6152      England   E12000006          East of England   E06000031
#> 6153      England   E12000006          East of England   E06000031
#> 6154      England   E12000006          East of England   E06000031
#> 6155      England   E12000006          East of England   E06000032
#> 6156      England   E12000006          East of England   E06000032
#> 6157      England   E12000006          East of England   E06000032
#> 6158      England   E12000006          East of England   E06000032
#> 6159      England   E12000006          East of England   E06000033
#> 6160      England   E12000006          East of England   E06000033
#> 6161      England   E12000006          East of England   E06000033
#> 6162      England   E12000006          East of England   E06000033
#> 6163      England   E12000006          East of England   E06000034
#> 6164      England   E12000006          East of England   E06000034
#> 6165      England   E12000006          East of England   E06000034
#> 6166      England   E12000006          East of England   E06000034
#> 6167      England   E12000006          East of England   E06000055
#> 6168      England   E12000006          East of England   E06000055
#> 6169      England   E12000006          East of England   E06000055
#> 6170      England   E12000006          East of England   E06000055
#> 6171      England   E12000006          East of England   E06000056
#> 6172      England   E12000006          East of England   E06000056
#> 6173      England   E12000006          East of England   E06000056
#> 6174      England   E12000006          East of England   E06000056
#> 6175      England   E12000006          East of England   E10000003
#> 6176      England   E12000006          East of England   E10000003
#> 6177      England   E12000006          East of England   E10000003
#> 6178      England   E12000006          East of England   E10000003
#> 6179      England   E12000006          East of England   E10000012
#> 6180      England   E12000006          East of England   E10000012
#> 6181      England   E12000006          East of England   E10000012
#> 6182      England   E12000006          East of England   E10000012
#> 6183      England   E12000006          East of England   E10000015
#> 6184      England   E12000006          East of England   E10000015
#> 6185      England   E12000006          East of England   E10000015
#> 6186      England   E12000006          East of England   E10000015
#> 6187      England   E12000006          East of England   E10000020
#> 6188      England   E12000006          East of England   E10000020
#> 6189      England   E12000006          East of England   E10000020
#> 6190      England   E12000006          East of England   E10000020
#> 6191      England   E12000006          East of England   E10000029
#> 6192      England   E12000006          East of England   E10000029
#> 6193      England   E12000006          East of England   E10000029
#> 6194      England   E12000006          East of England   E10000029
#> 6195      England   E12000007                   London        <NA>
#> 6196      England   E12000007                   London        <NA>
#> 6197      England   E12000007                   London        <NA>
#> 6198      England   E12000007                   London        <NA>
#> 6199      England   E12000007                   London   E09000001
#> 6200      England   E12000007                   London   E09000001
#> 6201      England   E12000007                   London   E09000002
#> 6202      England   E12000007                   London   E09000002
#> 6203      England   E12000007                   London   E09000002
#> 6204      England   E12000007                   London   E09000002
#> 6205      England   E12000007                   London   E09000003
#> 6206      England   E12000007                   London   E09000003
#> 6207      England   E12000007                   London   E09000003
#> 6208      England   E12000007                   London   E09000003
#> 6209      England   E12000007                   London   E09000004
#> 6210      England   E12000007                   London   E09000004
#> 6211      England   E12000007                   London   E09000004
#> 6212      England   E12000007                   London   E09000004
#> 6213      England   E12000007                   London   E09000005
#> 6214      England   E12000007                   London   E09000005
#> 6215      England   E12000007                   London   E09000005
#> 6216      England   E12000007                   London   E09000005
#> 6217      England   E12000007                   London   E09000006
#> 6218      England   E12000007                   London   E09000006
#> 6219      England   E12000007                   London   E09000006
#> 6220      England   E12000007                   London   E09000006
#> 6221      England   E12000007                   London   E09000007
#> 6222      England   E12000007                   London   E09000007
#> 6223      England   E12000007                   London   E09000007
#> 6224      England   E12000007                   London   E09000007
#> 6225      England   E12000007                   London   E09000008
#> 6226      England   E12000007                   London   E09000008
#> 6227      England   E12000007                   London   E09000008
#> 6228      England   E12000007                   London   E09000008
#> 6229      England   E12000007                   London   E09000009
#> 6230      England   E12000007                   London   E09000009
#> 6231      England   E12000007                   London   E09000009
#> 6232      England   E12000007                   London   E09000009
#> 6233      England   E12000007                   London   E09000010
#> 6234      England   E12000007                   London   E09000010
#> 6235      England   E12000007                   London   E09000010
#> 6236      England   E12000007                   London   E09000010
#> 6237      England   E12000007                   London   E09000011
#> 6238      England   E12000007                   London   E09000011
#> 6239      England   E12000007                   London   E09000011
#> 6240      England   E12000007                   London   E09000011
#> 6241      England   E12000007                   London   E09000012
#> 6242      England   E12000007                   London   E09000012
#> 6243      England   E12000007                   London   E09000012
#> 6244      England   E12000007                   London   E09000012
#> 6245      England   E12000007                   London   E09000013
#> 6246      England   E12000007                   London   E09000013
#> 6247      England   E12000007                   London   E09000013
#> 6248      England   E12000007                   London   E09000013
#> 6249      England   E12000007                   London   E09000014
#> 6250      England   E12000007                   London   E09000014
#> 6251      England   E12000007                   London   E09000014
#> 6252      England   E12000007                   London   E09000014
#> 6253      England   E12000007                   London   E09000015
#> 6254      England   E12000007                   London   E09000015
#> 6255      England   E12000007                   London   E09000015
#> 6256      England   E12000007                   London   E09000015
#> 6257      England   E12000007                   London   E09000016
#> 6258      England   E12000007                   London   E09000016
#> 6259      England   E12000007                   London   E09000016
#> 6260      England   E12000007                   London   E09000016
#> 6261      England   E12000007                   London   E09000017
#> 6262      England   E12000007                   London   E09000017
#> 6263      England   E12000007                   London   E09000017
#> 6264      England   E12000007                   London   E09000017
#> 6265      England   E12000007                   London   E09000018
#> 6266      England   E12000007                   London   E09000018
#> 6267      England   E12000007                   London   E09000018
#> 6268      England   E12000007                   London   E09000018
#> 6269      England   E12000007                   London   E09000019
#> 6270      England   E12000007                   London   E09000019
#> 6271      England   E12000007                   London   E09000019
#> 6272      England   E12000007                   London   E09000019
#> 6273      England   E12000007                   London   E09000020
#> 6274      England   E12000007                   London   E09000020
#> 6275      England   E12000007                   London   E09000020
#> 6276      England   E12000007                   London   E09000020
#> 6277      England   E12000007                   London   E09000021
#> 6278      England   E12000007                   London   E09000021
#> 6279      England   E12000007                   London   E09000021
#> 6280      England   E12000007                   London   E09000021
#> 6281      England   E12000007                   London   E09000022
#> 6282      England   E12000007                   London   E09000022
#> 6283      England   E12000007                   London   E09000022
#> 6284      England   E12000007                   London   E09000022
#> 6285      England   E12000007                   London   E09000023
#> 6286      England   E12000007                   London   E09000023
#> 6287      England   E12000007                   London   E09000023
#> 6288      England   E12000007                   London   E09000023
#> 6289      England   E12000007                   London   E09000024
#> 6290      England   E12000007                   London   E09000024
#> 6291      England   E12000007                   London   E09000024
#> 6292      England   E12000007                   London   E09000024
#> 6293      England   E12000007                   London   E09000025
#> 6294      England   E12000007                   London   E09000025
#> 6295      England   E12000007                   London   E09000025
#> 6296      England   E12000007                   London   E09000025
#> 6297      England   E12000007                   London   E09000026
#> 6298      England   E12000007                   London   E09000026
#> 6299      England   E12000007                   London   E09000026
#> 6300      England   E12000007                   London   E09000026
#> 6301      England   E12000007                   London   E09000027
#> 6302      England   E12000007                   London   E09000027
#> 6303      England   E12000007                   London   E09000027
#> 6304      England   E12000007                   London   E09000027
#> 6305      England   E12000007                   London   E09000028
#> 6306      England   E12000007                   London   E09000028
#> 6307      England   E12000007                   London   E09000028
#> 6308      England   E12000007                   London   E09000028
#> 6309      England   E12000007                   London   E09000029
#> 6310      England   E12000007                   London   E09000029
#> 6311      England   E12000007                   London   E09000029
#> 6312      England   E12000007                   London   E09000029
#> 6313      England   E12000007                   London   E09000030
#> 6314      England   E12000007                   London   E09000030
#> 6315      England   E12000007                   London   E09000030
#> 6316      England   E12000007                   London   E09000030
#> 6317      England   E12000007                   London   E09000031
#> 6318      England   E12000007                   London   E09000031
#> 6319      England   E12000007                   London   E09000031
#> 6320      England   E12000007                   London   E09000031
#> 6321      England   E12000007                   London   E09000032
#> 6322      England   E12000007                   London   E09000032
#> 6323      England   E12000007                   London   E09000032
#> 6324      England   E12000007                   London   E09000032
#> 6325      England   E12000007                   London   E09000033
#> 6326      England   E12000007                   London   E09000033
#> 6327      England   E12000007                   London   E09000033
#> 6328      England   E12000007                   London   E09000033
#> 6329      England   E12000008               South East        <NA>
#> 6330      England   E12000008               South East        <NA>
#> 6331      England   E12000008               South East        <NA>
#> 6332      England   E12000008               South East        <NA>
#> 6333      England   E12000008               South East   E06000035
#> 6334      England   E12000008               South East   E06000035
#> 6335      England   E12000008               South East   E06000035
#> 6336      England   E12000008               South East   E06000035
#> 6337      England   E12000008               South East   E06000036
#> 6338      England   E12000008               South East   E06000036
#> 6339      England   E12000008               South East   E06000036
#> 6340      England   E12000008               South East   E06000036
#> 6341      England   E12000008               South East   E06000037
#> 6342      England   E12000008               South East   E06000037
#> 6343      England   E12000008               South East   E06000037
#> 6344      England   E12000008               South East   E06000037
#> 6345      England   E12000008               South East   E06000038
#> 6346      England   E12000008               South East   E06000038
#> 6347      England   E12000008               South East   E06000038
#> 6348      England   E12000008               South East   E06000038
#> 6349      England   E12000008               South East   E06000039
#> 6350      England   E12000008               South East   E06000039
#> 6351      England   E12000008               South East   E06000039
#> 6352      England   E12000008               South East   E06000039
#> 6353      England   E12000008               South East   E06000040
#> 6354      England   E12000008               South East   E06000040
#> 6355      England   E12000008               South East   E06000040
#> 6356      England   E12000008               South East   E06000040
#> 6357      England   E12000008               South East   E06000041
#> 6358      England   E12000008               South East   E06000041
#> 6359      England   E12000008               South East   E06000041
#> 6360      England   E12000008               South East   E06000041
#> 6361      England   E12000008               South East   E06000042
#> 6362      England   E12000008               South East   E06000042
#> 6363      England   E12000008               South East   E06000042
#> 6364      England   E12000008               South East   E06000042
#> 6365      England   E12000008               South East   E06000043
#> 6366      England   E12000008               South East   E06000043
#> 6367      England   E12000008               South East   E06000043
#> 6368      England   E12000008               South East   E06000043
#> 6369      England   E12000008               South East   E06000044
#> 6370      England   E12000008               South East   E06000044
#> 6371      England   E12000008               South East   E06000044
#> 6372      England   E12000008               South East   E06000044
#> 6373      England   E12000008               South East   E06000045
#> 6374      England   E12000008               South East   E06000045
#> 6375      England   E12000008               South East   E06000045
#> 6376      England   E12000008               South East   E06000045
#> 6377      England   E12000008               South East   E06000046
#> 6378      England   E12000008               South East   E06000046
#> 6379      England   E12000008               South East   E06000046
#> 6380      England   E12000008               South East   E06000046
#> 6381      England   E12000008               South East   E06000060
#> 6382      England   E12000008               South East   E06000060
#> 6383      England   E12000008               South East   E06000060
#> 6384      England   E12000008               South East   E06000060
#> 6385      England   E12000008               South East   E10000011
#> 6386      England   E12000008               South East   E10000011
#> 6387      England   E12000008               South East   E10000011
#> 6388      England   E12000008               South East   E10000011
#> 6389      England   E12000008               South East   E10000014
#> 6390      England   E12000008               South East   E10000014
#> 6391      England   E12000008               South East   E10000014
#> 6392      England   E12000008               South East   E10000014
#> 6393      England   E12000008               South East   E10000016
#> 6394      England   E12000008               South East   E10000016
#> 6395      England   E12000008               South East   E10000016
#> 6396      England   E12000008               South East   E10000016
#> 6397      England   E12000008               South East   E10000025
#> 6398      England   E12000008               South East   E10000025
#> 6399      England   E12000008               South East   E10000025
#> 6400      England   E12000008               South East   E10000025
#> 6401      England   E12000008               South East   E10000030
#> 6402      England   E12000008               South East   E10000030
#> 6403      England   E12000008               South East   E10000030
#> 6404      England   E12000008               South East   E10000030
#> 6405      England   E12000008               South East   E10000032
#> 6406      England   E12000008               South East   E10000032
#> 6407      England   E12000008               South East   E10000032
#> 6408      England   E12000008               South East   E10000032
#> 6409      England   E12000009               South West        <NA>
#> 6410      England   E12000009               South West        <NA>
#> 6411      England   E12000009               South West        <NA>
#> 6412      England   E12000009               South West        <NA>
#> 6413      England   E12000009               South West   E06000022
#> 6414      England   E12000009               South West   E06000022
#> 6415      England   E12000009               South West   E06000022
#> 6416      England   E12000009               South West   E06000022
#> 6417      England   E12000009               South West   E06000023
#> 6418      England   E12000009               South West   E06000023
#> 6419      England   E12000009               South West   E06000023
#> 6420      England   E12000009               South West   E06000023
#> 6421      England   E12000009               South West   E06000024
#> 6422      England   E12000009               South West   E06000024
#> 6423      England   E12000009               South West   E06000024
#> 6424      England   E12000009               South West   E06000024
#> 6425      England   E12000009               South West   E06000025
#> 6426      England   E12000009               South West   E06000025
#> 6427      England   E12000009               South West   E06000025
#> 6428      England   E12000009               South West   E06000025
#> 6429      England   E12000009               South West   E06000026
#> 6430      England   E12000009               South West   E06000026
#> 6431      England   E12000009               South West   E06000026
#> 6432      England   E12000009               South West   E06000026
#> 6433      England   E12000009               South West   E06000027
#> 6434      England   E12000009               South West   E06000027
#> 6435      England   E12000009               South West   E06000027
#> 6436      England   E12000009               South West   E06000027
#> 6437      England   E12000009               South West   E06000030
#> 6438      England   E12000009               South West   E06000030
#> 6439      England   E12000009               South West   E06000030
#> 6440      England   E12000009               South West   E06000030
#> 6441      England   E12000009               South West   E06000052
#> 6442      England   E12000009               South West   E06000052
#> 6443      England   E12000009               South West   E06000052
#> 6444      England   E12000009               South West   E06000052
#> 6445      England   E12000009               South West   E06000053
#> 6446      England   E12000009               South West   E06000053
#> 6447      England   E12000009               South West   E06000054
#> 6448      England   E12000009               South West   E06000054
#> 6449      England   E12000009               South West   E06000054
#> 6450      England   E12000009               South West   E06000054
#> 6451      England   E12000009               South West   E06000058
#> 6452      England   E12000009               South West   E06000058
#> 6453      England   E12000009               South West   E06000058
#> 6454      England   E12000009               South West   E06000058
#> 6455      England   E12000009               South West   E06000059
#> 6456      England   E12000009               South West   E06000059
#> 6457      England   E12000009               South West   E06000059
#> 6458      England   E12000009               South West   E06000059
#> 6459      England   E12000009               South West   E06000066
#> 6460      England   E12000009               South West   E06000066
#> 6461      England   E12000009               South West   E06000066
#> 6462      England   E12000009               South West   E06000066
#> 6463      England   E12000009               South West   E10000008
#> 6464      England   E12000009               South West   E10000008
#> 6465      England   E12000009               South West   E10000008
#> 6466      England   E12000009               South West   E10000008
#> 6467      England   E12000009               South West   E10000013
#> 6468      England   E12000009               South West   E10000013
#> 6469      England   E12000009               South West   E10000013
#> 6470      England   E12000009               South West   E10000013
#> 6471      England        <NA>                     <NA>        <NA>
#> 6472      England        <NA>                     <NA>        <NA>
#> 6473      England        <NA>                     <NA>        <NA>
#> 6474      England        <NA>                     <NA>        <NA>
#> 6475      England   E12000001               North East        <NA>
#> 6476      England   E12000001               North East        <NA>
#> 6477      England   E12000001               North East        <NA>
#> 6478      England   E12000001               North East        <NA>
#> 6479      England   E12000001               North East   E06000001
#> 6480      England   E12000001               North East   E06000001
#> 6481      England   E12000001               North East   E06000001
#> 6482      England   E12000001               North East   E06000001
#> 6483      England   E12000001               North East   E06000002
#> 6484      England   E12000001               North East   E06000002
#> 6485      England   E12000001               North East   E06000002
#> 6486      England   E12000001               North East   E06000002
#> 6487      England   E12000001               North East   E06000003
#> 6488      England   E12000001               North East   E06000003
#> 6489      England   E12000001               North East   E06000003
#> 6490      England   E12000001               North East   E06000003
#> 6491      England   E12000001               North East   E06000004
#> 6492      England   E12000001               North East   E06000004
#> 6493      England   E12000001               North East   E06000004
#> 6494      England   E12000001               North East   E06000004
#> 6495      England   E12000001               North East   E06000005
#> 6496      England   E12000001               North East   E06000005
#> 6497      England   E12000001               North East   E06000005
#> 6498      England   E12000001               North East   E06000005
#> 6499      England   E12000001               North East   E06000047
#> 6500      England   E12000001               North East   E06000047
#> 6501      England   E12000001               North East   E06000047
#> 6502      England   E12000001               North East   E06000047
#> 6503      England   E12000001               North East   E06000057
#> 6504      England   E12000001               North East   E06000057
#> 6505      England   E12000001               North East   E06000057
#> 6506      England   E12000001               North East   E06000057
#> 6507      England   E12000001               North East   E08000021
#> 6508      England   E12000001               North East   E08000021
#> 6509      England   E12000001               North East   E08000021
#> 6510      England   E12000001               North East   E08000021
#> 6511      England   E12000001               North East   E08000022
#> 6512      England   E12000001               North East   E08000022
#> 6513      England   E12000001               North East   E08000022
#> 6514      England   E12000001               North East   E08000022
#> 6515      England   E12000001               North East   E08000023
#> 6516      England   E12000001               North East   E08000023
#> 6517      England   E12000001               North East   E08000023
#> 6518      England   E12000001               North East   E08000023
#> 6519      England   E12000001               North East   E08000024
#> 6520      England   E12000001               North East   E08000024
#> 6521      England   E12000001               North East   E08000024
#> 6522      England   E12000001               North East   E08000024
#> 6523      England   E12000001               North East   E08000037
#> 6524      England   E12000001               North East   E08000037
#> 6525      England   E12000001               North East   E08000037
#> 6526      England   E12000001               North East   E08000037
#> 6527      England   E12000002               North West        <NA>
#> 6528      England   E12000002               North West        <NA>
#> 6529      England   E12000002               North West        <NA>
#> 6530      England   E12000002               North West        <NA>
#> 6531      England   E12000002               North West   E06000006
#> 6532      England   E12000002               North West   E06000006
#> 6533      England   E12000002               North West   E06000006
#> 6534      England   E12000002               North West   E06000006
#> 6535      England   E12000002               North West   E06000007
#> 6536      England   E12000002               North West   E06000007
#> 6537      England   E12000002               North West   E06000007
#> 6538      England   E12000002               North West   E06000007
#> 6539      England   E12000002               North West   E06000008
#> 6540      England   E12000002               North West   E06000008
#> 6541      England   E12000002               North West   E06000008
#> 6542      England   E12000002               North West   E06000008
#> 6543      England   E12000002               North West   E06000009
#> 6544      England   E12000002               North West   E06000009
#> 6545      England   E12000002               North West   E06000009
#> 6546      England   E12000002               North West   E06000009
#> 6547      England   E12000002               North West   E06000049
#> 6548      England   E12000002               North West   E06000049
#> 6549      England   E12000002               North West   E06000049
#> 6550      England   E12000002               North West   E06000049
#> 6551      England   E12000002               North West   E06000050
#> 6552      England   E12000002               North West   E06000050
#> 6553      England   E12000002               North West   E06000050
#> 6554      England   E12000002               North West   E06000050
#> 6555      England   E12000002               North West   E06000063
#> 6556      England   E12000002               North West   E06000063
#> 6557      England   E12000002               North West   E06000063
#> 6558      England   E12000002               North West   E06000063
#> 6559      England   E12000002               North West   E06000064
#> 6560      England   E12000002               North West   E06000064
#> 6561      England   E12000002               North West   E06000064
#> 6562      England   E12000002               North West   E06000064
#> 6563      England   E12000002               North West   E08000001
#> 6564      England   E12000002               North West   E08000001
#> 6565      England   E12000002               North West   E08000001
#> 6566      England   E12000002               North West   E08000001
#> 6567      England   E12000002               North West   E08000002
#> 6568      England   E12000002               North West   E08000002
#> 6569      England   E12000002               North West   E08000002
#> 6570      England   E12000002               North West   E08000002
#> 6571      England   E12000002               North West   E08000003
#> 6572      England   E12000002               North West   E08000003
#> 6573      England   E12000002               North West   E08000003
#> 6574      England   E12000002               North West   E08000003
#> 6575      England   E12000002               North West   E08000004
#> 6576      England   E12000002               North West   E08000004
#> 6577      England   E12000002               North West   E08000004
#> 6578      England   E12000002               North West   E08000004
#> 6579      England   E12000002               North West   E08000005
#> 6580      England   E12000002               North West   E08000005
#> 6581      England   E12000002               North West   E08000005
#> 6582      England   E12000002               North West   E08000005
#> 6583      England   E12000002               North West   E08000006
#> 6584      England   E12000002               North West   E08000006
#> 6585      England   E12000002               North West   E08000006
#> 6586      England   E12000002               North West   E08000006
#> 6587      England   E12000002               North West   E08000007
#> 6588      England   E12000002               North West   E08000007
#> 6589      England   E12000002               North West   E08000007
#> 6590      England   E12000002               North West   E08000007
#> 6591      England   E12000002               North West   E08000008
#> 6592      England   E12000002               North West   E08000008
#> 6593      England   E12000002               North West   E08000008
#> 6594      England   E12000002               North West   E08000008
#> 6595      England   E12000002               North West   E08000009
#> 6596      England   E12000002               North West   E08000009
#> 6597      England   E12000002               North West   E08000009
#> 6598      England   E12000002               North West   E08000009
#> 6599      England   E12000002               North West   E08000010
#> 6600      England   E12000002               North West   E08000010
#> 6601      England   E12000002               North West   E08000010
#> 6602      England   E12000002               North West   E08000010
#> 6603      England   E12000002               North West   E08000011
#> 6604      England   E12000002               North West   E08000011
#> 6605      England   E12000002               North West   E08000011
#> 6606      England   E12000002               North West   E08000011
#> 6607      England   E12000002               North West   E08000012
#> 6608      England   E12000002               North West   E08000012
#> 6609      England   E12000002               North West   E08000012
#> 6610      England   E12000002               North West   E08000012
#> 6611      England   E12000002               North West   E08000013
#> 6612      England   E12000002               North West   E08000013
#> 6613      England   E12000002               North West   E08000013
#> 6614      England   E12000002               North West   E08000013
#> 6615      England   E12000002               North West   E08000014
#> 6616      England   E12000002               North West   E08000014
#> 6617      England   E12000002               North West   E08000014
#> 6618      England   E12000002               North West   E08000014
#> 6619      England   E12000002               North West   E08000015
#> 6620      England   E12000002               North West   E08000015
#> 6621      England   E12000002               North West   E08000015
#> 6622      England   E12000002               North West   E08000015
#> 6623      England   E12000002               North West   E10000017
#> 6624      England   E12000002               North West   E10000017
#> 6625      England   E12000002               North West   E10000017
#> 6626      England   E12000002               North West   E10000017
#> 6627      England   E12000003 Yorkshire and The Humber        <NA>
#> 6628      England   E12000003 Yorkshire and The Humber        <NA>
#> 6629      England   E12000003 Yorkshire and The Humber        <NA>
#> 6630      England   E12000003 Yorkshire and The Humber        <NA>
#> 6631      England   E12000003 Yorkshire and The Humber   E06000010
#> 6632      England   E12000003 Yorkshire and The Humber   E06000010
#> 6633      England   E12000003 Yorkshire and The Humber   E06000010
#> 6634      England   E12000003 Yorkshire and The Humber   E06000010
#> 6635      England   E12000003 Yorkshire and The Humber   E06000011
#> 6636      England   E12000003 Yorkshire and The Humber   E06000011
#> 6637      England   E12000003 Yorkshire and The Humber   E06000011
#> 6638      England   E12000003 Yorkshire and The Humber   E06000011
#> 6639      England   E12000003 Yorkshire and The Humber   E06000012
#> 6640      England   E12000003 Yorkshire and The Humber   E06000012
#> 6641      England   E12000003 Yorkshire and The Humber   E06000012
#> 6642      England   E12000003 Yorkshire and The Humber   E06000012
#> 6643      England   E12000003 Yorkshire and The Humber   E06000013
#> 6644      England   E12000003 Yorkshire and The Humber   E06000013
#> 6645      England   E12000003 Yorkshire and The Humber   E06000013
#> 6646      England   E12000003 Yorkshire and The Humber   E06000013
#> 6647      England   E12000003 Yorkshire and The Humber   E06000014
#> 6648      England   E12000003 Yorkshire and The Humber   E06000014
#> 6649      England   E12000003 Yorkshire and The Humber   E06000014
#> 6650      England   E12000003 Yorkshire and The Humber   E06000014
#> 6651      England   E12000003 Yorkshire and The Humber   E06000065
#> 6652      England   E12000003 Yorkshire and The Humber   E06000065
#> 6653      England   E12000003 Yorkshire and The Humber   E06000065
#> 6654      England   E12000003 Yorkshire and The Humber   E06000065
#> 6655      England   E12000003 Yorkshire and The Humber   E08000016
#> 6656      England   E12000003 Yorkshire and The Humber   E08000016
#> 6657      England   E12000003 Yorkshire and The Humber   E08000016
#> 6658      England   E12000003 Yorkshire and The Humber   E08000016
#> 6659      England   E12000003 Yorkshire and The Humber   E08000017
#> 6660      England   E12000003 Yorkshire and The Humber   E08000017
#> 6661      England   E12000003 Yorkshire and The Humber   E08000017
#> 6662      England   E12000003 Yorkshire and The Humber   E08000017
#> 6663      England   E12000003 Yorkshire and The Humber   E08000018
#> 6664      England   E12000003 Yorkshire and The Humber   E08000018
#> 6665      England   E12000003 Yorkshire and The Humber   E08000018
#> 6666      England   E12000003 Yorkshire and The Humber   E08000018
#> 6667      England   E12000003 Yorkshire and The Humber   E08000019
#> 6668      England   E12000003 Yorkshire and The Humber   E08000019
#> 6669      England   E12000003 Yorkshire and The Humber   E08000019
#> 6670      England   E12000003 Yorkshire and The Humber   E08000019
#> 6671      England   E12000003 Yorkshire and The Humber   E08000032
#> 6672      England   E12000003 Yorkshire and The Humber   E08000032
#> 6673      England   E12000003 Yorkshire and The Humber   E08000032
#> 6674      England   E12000003 Yorkshire and The Humber   E08000032
#> 6675      England   E12000003 Yorkshire and The Humber   E08000033
#> 6676      England   E12000003 Yorkshire and The Humber   E08000033
#> 6677      England   E12000003 Yorkshire and The Humber   E08000033
#> 6678      England   E12000003 Yorkshire and The Humber   E08000033
#> 6679      England   E12000003 Yorkshire and The Humber   E08000034
#> 6680      England   E12000003 Yorkshire and The Humber   E08000034
#> 6681      England   E12000003 Yorkshire and The Humber   E08000034
#> 6682      England   E12000003 Yorkshire and The Humber   E08000034
#> 6683      England   E12000003 Yorkshire and The Humber   E08000035
#> 6684      England   E12000003 Yorkshire and The Humber   E08000035
#> 6685      England   E12000003 Yorkshire and The Humber   E08000035
#> 6686      England   E12000003 Yorkshire and The Humber   E08000035
#> 6687      England   E12000003 Yorkshire and The Humber   E08000036
#> 6688      England   E12000003 Yorkshire and The Humber   E08000036
#> 6689      England   E12000003 Yorkshire and The Humber   E08000036
#> 6690      England   E12000003 Yorkshire and The Humber   E08000036
#> 6691      England   E12000004            East Midlands        <NA>
#> 6692      England   E12000004            East Midlands        <NA>
#> 6693      England   E12000004            East Midlands        <NA>
#> 6694      England   E12000004            East Midlands        <NA>
#> 6695      England   E12000004            East Midlands   E06000015
#> 6696      England   E12000004            East Midlands   E06000015
#> 6697      England   E12000004            East Midlands   E06000015
#> 6698      England   E12000004            East Midlands   E06000015
#> 6699      England   E12000004            East Midlands   E06000016
#> 6700      England   E12000004            East Midlands   E06000016
#> 6701      England   E12000004            East Midlands   E06000016
#> 6702      England   E12000004            East Midlands   E06000016
#> 6703      England   E12000004            East Midlands   E06000017
#> 6704      England   E12000004            East Midlands   E06000017
#> 6705      England   E12000004            East Midlands   E06000017
#> 6706      England   E12000004            East Midlands   E06000018
#> 6707      England   E12000004            East Midlands   E06000018
#> 6708      England   E12000004            East Midlands   E06000018
#> 6709      England   E12000004            East Midlands   E06000018
#> 6710      England   E12000004            East Midlands   E06000061
#> 6711      England   E12000004            East Midlands   E06000061
#> 6712      England   E12000004            East Midlands   E06000061
#> 6713      England   E12000004            East Midlands   E06000061
#> 6714      England   E12000004            East Midlands   E06000062
#> 6715      England   E12000004            East Midlands   E06000062
#> 6716      England   E12000004            East Midlands   E06000062
#> 6717      England   E12000004            East Midlands   E06000062
#> 6718      England   E12000004            East Midlands   E10000007
#> 6719      England   E12000004            East Midlands   E10000007
#> 6720      England   E12000004            East Midlands   E10000007
#> 6721      England   E12000004            East Midlands   E10000007
#> 6722      England   E12000004            East Midlands   E10000018
#> 6723      England   E12000004            East Midlands   E10000018
#> 6724      England   E12000004            East Midlands   E10000018
#> 6725      England   E12000004            East Midlands   E10000018
#> 6726      England   E12000004            East Midlands   E10000019
#> 6727      England   E12000004            East Midlands   E10000019
#> 6728      England   E12000004            East Midlands   E10000019
#> 6729      England   E12000004            East Midlands   E10000019
#> 6730      England   E12000004            East Midlands   E10000024
#> 6731      England   E12000004            East Midlands   E10000024
#> 6732      England   E12000004            East Midlands   E10000024
#> 6733      England   E12000004            East Midlands   E10000024
#> 6734      England   E12000005            West Midlands        <NA>
#> 6735      England   E12000005            West Midlands        <NA>
#> 6736      England   E12000005            West Midlands        <NA>
#> 6737      England   E12000005            West Midlands        <NA>
#> 6738      England   E12000005            West Midlands   E06000019
#> 6739      England   E12000005            West Midlands   E06000019
#> 6740      England   E12000005            West Midlands   E06000019
#> 6741      England   E12000005            West Midlands   E06000019
#> 6742      England   E12000005            West Midlands   E06000020
#> 6743      England   E12000005            West Midlands   E06000020
#> 6744      England   E12000005            West Midlands   E06000020
#> 6745      England   E12000005            West Midlands   E06000020
#> 6746      England   E12000005            West Midlands   E06000021
#> 6747      England   E12000005            West Midlands   E06000021
#> 6748      England   E12000005            West Midlands   E06000021
#> 6749      England   E12000005            West Midlands   E06000021
#> 6750      England   E12000005            West Midlands   E06000051
#> 6751      England   E12000005            West Midlands   E06000051
#> 6752      England   E12000005            West Midlands   E06000051
#> 6753      England   E12000005            West Midlands   E06000051
#> 6754      England   E12000005            West Midlands   E08000025
#> 6755      England   E12000005            West Midlands   E08000025
#> 6756      England   E12000005            West Midlands   E08000025
#> 6757      England   E12000005            West Midlands   E08000025
#> 6758      England   E12000005            West Midlands   E08000026
#> 6759      England   E12000005            West Midlands   E08000026
#> 6760      England   E12000005            West Midlands   E08000026
#> 6761      England   E12000005            West Midlands   E08000026
#> 6762      England   E12000005            West Midlands   E08000027
#> 6763      England   E12000005            West Midlands   E08000027
#> 6764      England   E12000005            West Midlands   E08000027
#> 6765      England   E12000005            West Midlands   E08000027
#> 6766      England   E12000005            West Midlands   E08000028
#> 6767      England   E12000005            West Midlands   E08000028
#> 6768      England   E12000005            West Midlands   E08000028
#> 6769      England   E12000005            West Midlands   E08000028
#> 6770      England   E12000005            West Midlands   E08000029
#> 6771      England   E12000005            West Midlands   E08000029
#> 6772      England   E12000005            West Midlands   E08000029
#> 6773      England   E12000005            West Midlands   E08000029
#> 6774      England   E12000005            West Midlands   E08000030
#> 6775      England   E12000005            West Midlands   E08000030
#> 6776      England   E12000005            West Midlands   E08000030
#> 6777      England   E12000005            West Midlands   E08000030
#> 6778      England   E12000005            West Midlands   E08000031
#> 6779      England   E12000005            West Midlands   E08000031
#> 6780      England   E12000005            West Midlands   E08000031
#> 6781      England   E12000005            West Midlands   E08000031
#> 6782      England   E12000005            West Midlands   E10000028
#> 6783      England   E12000005            West Midlands   E10000028
#> 6784      England   E12000005            West Midlands   E10000028
#> 6785      England   E12000005            West Midlands   E10000028
#> 6786      England   E12000005            West Midlands   E10000031
#> 6787      England   E12000005            West Midlands   E10000031
#> 6788      England   E12000005            West Midlands   E10000031
#> 6789      England   E12000005            West Midlands   E10000031
#> 6790      England   E12000005            West Midlands   E10000034
#> 6791      England   E12000005            West Midlands   E10000034
#> 6792      England   E12000005            West Midlands   E10000034
#> 6793      England   E12000005            West Midlands   E10000034
#> 6794      England   E12000006          East of England        <NA>
#> 6795      England   E12000006          East of England        <NA>
#> 6796      England   E12000006          East of England        <NA>
#> 6797      England   E12000006          East of England        <NA>
#> 6798      England   E12000006          East of England   E06000031
#> 6799      England   E12000006          East of England   E06000031
#> 6800      England   E12000006          East of England   E06000031
#> 6801      England   E12000006          East of England   E06000031
#> 6802      England   E12000006          East of England   E06000032
#> 6803      England   E12000006          East of England   E06000032
#> 6804      England   E12000006          East of England   E06000032
#> 6805      England   E12000006          East of England   E06000032
#> 6806      England   E12000006          East of England   E06000033
#> 6807      England   E12000006          East of England   E06000033
#> 6808      England   E12000006          East of England   E06000033
#> 6809      England   E12000006          East of England   E06000033
#> 6810      England   E12000006          East of England   E06000034
#> 6811      England   E12000006          East of England   E06000034
#> 6812      England   E12000006          East of England   E06000034
#> 6813      England   E12000006          East of England   E06000034
#> 6814      England   E12000006          East of England   E06000055
#> 6815      England   E12000006          East of England   E06000055
#> 6816      England   E12000006          East of England   E06000055
#> 6817      England   E12000006          East of England   E06000055
#> 6818      England   E12000006          East of England   E06000056
#> 6819      England   E12000006          East of England   E06000056
#> 6820      England   E12000006          East of England   E06000056
#> 6821      England   E12000006          East of England   E06000056
#> 6822      England   E12000006          East of England   E10000003
#> 6823      England   E12000006          East of England   E10000003
#> 6824      England   E12000006          East of England   E10000003
#> 6825      England   E12000006          East of England   E10000003
#> 6826      England   E12000006          East of England   E10000012
#> 6827      England   E12000006          East of England   E10000012
#> 6828      England   E12000006          East of England   E10000012
#> 6829      England   E12000006          East of England   E10000012
#> 6830      England   E12000006          East of England   E10000015
#> 6831      England   E12000006          East of England   E10000015
#> 6832      England   E12000006          East of England   E10000015
#> 6833      England   E12000006          East of England   E10000015
#> 6834      England   E12000006          East of England   E10000020
#> 6835      England   E12000006          East of England   E10000020
#> 6836      England   E12000006          East of England   E10000020
#> 6837      England   E12000006          East of England   E10000020
#> 6838      England   E12000006          East of England   E10000029
#> 6839      England   E12000006          East of England   E10000029
#> 6840      England   E12000006          East of England   E10000029
#> 6841      England   E12000006          East of England   E10000029
#> 6842      England   E12000007                   London        <NA>
#> 6843      England   E12000007                   London        <NA>
#> 6844      England   E12000007                   London        <NA>
#> 6845      England   E12000007                   London        <NA>
#> 6846      England   E12000007                   London   E09000001
#> 6847      England   E12000007                   London   E09000001
#> 6848      England   E12000007                   London   E09000002
#> 6849      England   E12000007                   London   E09000002
#> 6850      England   E12000007                   London   E09000002
#> 6851      England   E12000007                   London   E09000002
#> 6852      England   E12000007                   London   E09000003
#> 6853      England   E12000007                   London   E09000003
#> 6854      England   E12000007                   London   E09000003
#> 6855      England   E12000007                   London   E09000003
#> 6856      England   E12000007                   London   E09000004
#> 6857      England   E12000007                   London   E09000004
#> 6858      England   E12000007                   London   E09000004
#> 6859      England   E12000007                   London   E09000004
#> 6860      England   E12000007                   London   E09000005
#> 6861      England   E12000007                   London   E09000005
#> 6862      England   E12000007                   London   E09000005
#> 6863      England   E12000007                   London   E09000005
#> 6864      England   E12000007                   London   E09000006
#> 6865      England   E12000007                   London   E09000006
#> 6866      England   E12000007                   London   E09000006
#> 6867      England   E12000007                   London   E09000006
#> 6868      England   E12000007                   London   E09000007
#> 6869      England   E12000007                   London   E09000007
#> 6870      England   E12000007                   London   E09000007
#> 6871      England   E12000007                   London   E09000007
#> 6872      England   E12000007                   London   E09000008
#> 6873      England   E12000007                   London   E09000008
#> 6874      England   E12000007                   London   E09000008
#> 6875      England   E12000007                   London   E09000008
#> 6876      England   E12000007                   London   E09000009
#> 6877      England   E12000007                   London   E09000009
#> 6878      England   E12000007                   London   E09000009
#> 6879      England   E12000007                   London   E09000009
#> 6880      England   E12000007                   London   E09000010
#> 6881      England   E12000007                   London   E09000010
#> 6882      England   E12000007                   London   E09000010
#> 6883      England   E12000007                   London   E09000010
#> 6884      England   E12000007                   London   E09000011
#> 6885      England   E12000007                   London   E09000011
#> 6886      England   E12000007                   London   E09000011
#> 6887      England   E12000007                   London   E09000011
#> 6888      England   E12000007                   London   E09000012
#> 6889      England   E12000007                   London   E09000012
#> 6890      England   E12000007                   London   E09000012
#> 6891      England   E12000007                   London   E09000012
#> 6892      England   E12000007                   London   E09000013
#> 6893      England   E12000007                   London   E09000013
#> 6894      England   E12000007                   London   E09000013
#> 6895      England   E12000007                   London   E09000013
#> 6896      England   E12000007                   London   E09000014
#> 6897      England   E12000007                   London   E09000014
#> 6898      England   E12000007                   London   E09000014
#> 6899      England   E12000007                   London   E09000014
#> 6900      England   E12000007                   London   E09000015
#> 6901      England   E12000007                   London   E09000015
#> 6902      England   E12000007                   London   E09000015
#> 6903      England   E12000007                   London   E09000015
#> 6904      England   E12000007                   London   E09000016
#> 6905      England   E12000007                   London   E09000016
#> 6906      England   E12000007                   London   E09000016
#> 6907      England   E12000007                   London   E09000016
#> 6908      England   E12000007                   London   E09000017
#> 6909      England   E12000007                   London   E09000017
#> 6910      England   E12000007                   London   E09000017
#> 6911      England   E12000007                   London   E09000017
#> 6912      England   E12000007                   London   E09000018
#> 6913      England   E12000007                   London   E09000018
#> 6914      England   E12000007                   London   E09000018
#> 6915      England   E12000007                   London   E09000018
#> 6916      England   E12000007                   London   E09000019
#> 6917      England   E12000007                   London   E09000019
#> 6918      England   E12000007                   London   E09000019
#> 6919      England   E12000007                   London   E09000019
#> 6920      England   E12000007                   London   E09000020
#> 6921      England   E12000007                   London   E09000020
#> 6922      England   E12000007                   London   E09000020
#> 6923      England   E12000007                   London   E09000020
#> 6924      England   E12000007                   London   E09000021
#> 6925      England   E12000007                   London   E09000021
#> 6926      England   E12000007                   London   E09000021
#> 6927      England   E12000007                   London   E09000021
#> 6928      England   E12000007                   London   E09000022
#> 6929      England   E12000007                   London   E09000022
#> 6930      England   E12000007                   London   E09000022
#> 6931      England   E12000007                   London   E09000022
#> 6932      England   E12000007                   London   E09000023
#> 6933      England   E12000007                   London   E09000023
#> 6934      England   E12000007                   London   E09000023
#> 6935      England   E12000007                   London   E09000023
#> 6936      England   E12000007                   London   E09000024
#> 6937      England   E12000007                   London   E09000024
#> 6938      England   E12000007                   London   E09000024
#> 6939      England   E12000007                   London   E09000024
#> 6940      England   E12000007                   London   E09000025
#> 6941      England   E12000007                   London   E09000025
#> 6942      England   E12000007                   London   E09000025
#> 6943      England   E12000007                   London   E09000025
#> 6944      England   E12000007                   London   E09000026
#> 6945      England   E12000007                   London   E09000026
#> 6946      England   E12000007                   London   E09000026
#> 6947      England   E12000007                   London   E09000026
#> 6948      England   E12000007                   London   E09000027
#> 6949      England   E12000007                   London   E09000027
#> 6950      England   E12000007                   London   E09000027
#> 6951      England   E12000007                   London   E09000027
#> 6952      England   E12000007                   London   E09000028
#> 6953      England   E12000007                   London   E09000028
#> 6954      England   E12000007                   London   E09000028
#> 6955      England   E12000007                   London   E09000028
#> 6956      England   E12000007                   London   E09000029
#> 6957      England   E12000007                   London   E09000029
#> 6958      England   E12000007                   London   E09000029
#> 6959      England   E12000007                   London   E09000029
#> 6960      England   E12000007                   London   E09000030
#> 6961      England   E12000007                   London   E09000030
#> 6962      England   E12000007                   London   E09000030
#> 6963      England   E12000007                   London   E09000030
#> 6964      England   E12000007                   London   E09000031
#> 6965      England   E12000007                   London   E09000031
#> 6966      England   E12000007                   London   E09000031
#> 6967      England   E12000007                   London   E09000031
#> 6968      England   E12000007                   London   E09000032
#> 6969      England   E12000007                   London   E09000032
#> 6970      England   E12000007                   London   E09000032
#> 6971      England   E12000007                   London   E09000032
#> 6972      England   E12000007                   London   E09000033
#> 6973      England   E12000007                   London   E09000033
#> 6974      England   E12000007                   London   E09000033
#> 6975      England   E12000007                   London   E09000033
#> 6976      England   E12000008               South East        <NA>
#> 6977      England   E12000008               South East        <NA>
#> 6978      England   E12000008               South East        <NA>
#> 6979      England   E12000008               South East        <NA>
#> 6980      England   E12000008               South East   E06000035
#> 6981      England   E12000008               South East   E06000035
#> 6982      England   E12000008               South East   E06000035
#> 6983      England   E12000008               South East   E06000035
#> 6984      England   E12000008               South East   E06000036
#> 6985      England   E12000008               South East   E06000036
#> 6986      England   E12000008               South East   E06000036
#> 6987      England   E12000008               South East   E06000036
#> 6988      England   E12000008               South East   E06000037
#> 6989      England   E12000008               South East   E06000037
#> 6990      England   E12000008               South East   E06000037
#> 6991      England   E12000008               South East   E06000037
#> 6992      England   E12000008               South East   E06000038
#> 6993      England   E12000008               South East   E06000038
#> 6994      England   E12000008               South East   E06000038
#> 6995      England   E12000008               South East   E06000038
#> 6996      England   E12000008               South East   E06000039
#> 6997      England   E12000008               South East   E06000039
#> 6998      England   E12000008               South East   E06000039
#> 6999      England   E12000008               South East   E06000039
#> 7000      England   E12000008               South East   E06000040
#> 7001      England   E12000008               South East   E06000040
#> 7002      England   E12000008               South East   E06000040
#> 7003      England   E12000008               South East   E06000040
#> 7004      England   E12000008               South East   E06000041
#> 7005      England   E12000008               South East   E06000041
#> 7006      England   E12000008               South East   E06000041
#> 7007      England   E12000008               South East   E06000041
#> 7008      England   E12000008               South East   E06000042
#> 7009      England   E12000008               South East   E06000042
#> 7010      England   E12000008               South East   E06000042
#> 7011      England   E12000008               South East   E06000042
#> 7012      England   E12000008               South East   E06000043
#> 7013      England   E12000008               South East   E06000043
#> 7014      England   E12000008               South East   E06000043
#> 7015      England   E12000008               South East   E06000043
#> 7016      England   E12000008               South East   E06000044
#> 7017      England   E12000008               South East   E06000044
#> 7018      England   E12000008               South East   E06000044
#> 7019      England   E12000008               South East   E06000044
#> 7020      England   E12000008               South East   E06000045
#> 7021      England   E12000008               South East   E06000045
#> 7022      England   E12000008               South East   E06000045
#> 7023      England   E12000008               South East   E06000045
#> 7024      England   E12000008               South East   E06000046
#> 7025      England   E12000008               South East   E06000046
#> 7026      England   E12000008               South East   E06000046
#> 7027      England   E12000008               South East   E06000046
#> 7028      England   E12000008               South East   E06000060
#> 7029      England   E12000008               South East   E06000060
#> 7030      England   E12000008               South East   E06000060
#> 7031      England   E12000008               South East   E06000060
#> 7032      England   E12000008               South East   E10000011
#> 7033      England   E12000008               South East   E10000011
#> 7034      England   E12000008               South East   E10000011
#> 7035      England   E12000008               South East   E10000011
#> 7036      England   E12000008               South East   E10000014
#> 7037      England   E12000008               South East   E10000014
#> 7038      England   E12000008               South East   E10000014
#> 7039      England   E12000008               South East   E10000014
#> 7040      England   E12000008               South East   E10000016
#> 7041      England   E12000008               South East   E10000016
#> 7042      England   E12000008               South East   E10000016
#> 7043      England   E12000008               South East   E10000016
#> 7044      England   E12000008               South East   E10000025
#> 7045      England   E12000008               South East   E10000025
#> 7046      England   E12000008               South East   E10000025
#> 7047      England   E12000008               South East   E10000025
#> 7048      England   E12000008               South East   E10000030
#> 7049      England   E12000008               South East   E10000030
#> 7050      England   E12000008               South East   E10000030
#> 7051      England   E12000008               South East   E10000030
#> 7052      England   E12000008               South East   E10000032
#> 7053      England   E12000008               South East   E10000032
#> 7054      England   E12000008               South East   E10000032
#> 7055      England   E12000008               South East   E10000032
#> 7056      England   E12000009               South West        <NA>
#> 7057      England   E12000009               South West        <NA>
#> 7058      England   E12000009               South West        <NA>
#> 7059      England   E12000009               South West        <NA>
#> 7060      England   E12000009               South West   E06000022
#> 7061      England   E12000009               South West   E06000022
#> 7062      England   E12000009               South West   E06000022
#> 7063      England   E12000009               South West   E06000022
#> 7064      England   E12000009               South West   E06000023
#> 7065      England   E12000009               South West   E06000023
#> 7066      England   E12000009               South West   E06000023
#> 7067      England   E12000009               South West   E06000023
#> 7068      England   E12000009               South West   E06000024
#> 7069      England   E12000009               South West   E06000024
#> 7070      England   E12000009               South West   E06000024
#> 7071      England   E12000009               South West   E06000024
#> 7072      England   E12000009               South West   E06000025
#> 7073      England   E12000009               South West   E06000025
#> 7074      England   E12000009               South West   E06000025
#> 7075      England   E12000009               South West   E06000025
#> 7076      England   E12000009               South West   E06000026
#> 7077      England   E12000009               South West   E06000026
#> 7078      England   E12000009               South West   E06000026
#> 7079      England   E12000009               South West   E06000026
#> 7080      England   E12000009               South West   E06000027
#> 7081      England   E12000009               South West   E06000027
#> 7082      England   E12000009               South West   E06000027
#> 7083      England   E12000009               South West   E06000027
#> 7084      England   E12000009               South West   E06000030
#> 7085      England   E12000009               South West   E06000030
#> 7086      England   E12000009               South West   E06000030
#> 7087      England   E12000009               South West   E06000030
#> 7088      England   E12000009               South West   E06000052
#> 7089      England   E12000009               South West   E06000052
#> 7090      England   E12000009               South West   E06000052
#> 7091      England   E12000009               South West   E06000052
#> 7092      England   E12000009               South West   E06000053
#> 7093      England   E12000009               South West   E06000053
#> 7094      England   E12000009               South West   E06000054
#> 7095      England   E12000009               South West   E06000054
#> 7096      England   E12000009               South West   E06000054
#> 7097      England   E12000009               South West   E06000054
#> 7098      England   E12000009               South West   E06000058
#> 7099      England   E12000009               South West   E06000058
#> 7100      England   E12000009               South West   E06000058
#> 7101      England   E12000009               South West   E06000058
#> 7102      England   E12000009               South West   E06000059
#> 7103      England   E12000009               South West   E06000059
#> 7104      England   E12000009               South West   E06000059
#> 7105      England   E12000009               South West   E06000059
#> 7106      England   E12000009               South West   E06000066
#> 7107      England   E12000009               South West   E06000066
#> 7108      England   E12000009               South West   E06000066
#> 7109      England   E12000009               South West   E06000066
#> 7110      England   E12000009               South West   E10000008
#> 7111      England   E12000009               South West   E10000008
#> 7112      England   E12000009               South West   E10000008
#> 7113      England   E12000009               South West   E10000008
#> 7114      England   E12000009               South West   E10000013
#> 7115      England   E12000009               South West   E10000013
#> 7116      England   E12000009               South West   E10000013
#> 7117      England   E12000009               South West   E10000013
#> 7118      England        <NA>                     <NA>        <NA>
#> 7119      England        <NA>                     <NA>        <NA>
#> 7120      England        <NA>                     <NA>        <NA>
#> 7121      England        <NA>                     <NA>        <NA>
#> 7122      England   E12000001               North East        <NA>
#> 7123      England   E12000001               North East        <NA>
#> 7124      England   E12000001               North East        <NA>
#> 7125      England   E12000001               North East        <NA>
#> 7126      England   E12000001               North East   E06000001
#> 7127      England   E12000001               North East   E06000001
#> 7128      England   E12000001               North East   E06000001
#> 7129      England   E12000001               North East   E06000002
#> 7130      England   E12000001               North East   E06000002
#> 7131      England   E12000001               North East   E06000002
#> 7132      England   E12000001               North East   E06000003
#> 7133      England   E12000001               North East   E06000003
#> 7134      England   E12000001               North East   E06000003
#> 7135      England   E12000001               North East   E06000004
#> 7136      England   E12000001               North East   E06000004
#> 7137      England   E12000001               North East   E06000004
#> 7138      England   E12000001               North East   E06000005
#> 7139      England   E12000001               North East   E06000005
#> 7140      England   E12000001               North East   E06000005
#> 7141      England   E12000001               North East   E06000047
#> 7142      England   E12000001               North East   E06000047
#> 7143      England   E12000001               North East   E06000047
#> 7144      England   E12000001               North East   E06000057
#> 7145      England   E12000001               North East   E06000057
#> 7146      England   E12000001               North East   E06000057
#> 7147      England   E12000001               North East   E08000021
#> 7148      England   E12000001               North East   E08000021
#> 7149      England   E12000001               North East   E08000021
#> 7150      England   E12000001               North East   E08000022
#> 7151      England   E12000001               North East   E08000022
#> 7152      England   E12000001               North East   E08000022
#> 7153      England   E12000001               North East   E08000023
#> 7154      England   E12000001               North East   E08000023
#> 7155      England   E12000001               North East   E08000023
#> 7156      England   E12000001               North East   E08000024
#> 7157      England   E12000001               North East   E08000024
#> 7158      England   E12000001               North East   E08000024
#> 7159      England   E12000001               North East   E08000037
#> 7160      England   E12000001               North East   E08000037
#> 7161      England   E12000001               North East   E08000037
#> 7162      England   E12000002               North West        <NA>
#> 7163      England   E12000002               North West        <NA>
#> 7164      England   E12000002               North West        <NA>
#> 7165      England   E12000002               North West        <NA>
#> 7166      England   E12000002               North West   E06000006
#> 7167      England   E12000002               North West   E06000006
#> 7168      England   E12000002               North West   E06000006
#> 7169      England   E12000002               North West   E06000007
#> 7170      England   E12000002               North West   E06000007
#> 7171      England   E12000002               North West   E06000007
#> 7172      England   E12000002               North West   E06000008
#> 7173      England   E12000002               North West   E06000008
#> 7174      England   E12000002               North West   E06000008
#> 7175      England   E12000002               North West   E06000009
#> 7176      England   E12000002               North West   E06000009
#> 7177      England   E12000002               North West   E06000009
#> 7178      England   E12000002               North West   E06000049
#> 7179      England   E12000002               North West   E06000049
#> 7180      England   E12000002               North West   E06000049
#> 7181      England   E12000002               North West   E06000050
#> 7182      England   E12000002               North West   E06000050
#> 7183      England   E12000002               North West   E06000050
#> 7184      England   E12000002               North West   E06000063
#> 7185      England   E12000002               North West   E06000063
#> 7186      England   E12000002               North West   E06000063
#> 7187      England   E12000002               North West   E06000064
#> 7188      England   E12000002               North West   E06000064
#> 7189      England   E12000002               North West   E06000064
#> 7190      England   E12000002               North West   E08000001
#> 7191      England   E12000002               North West   E08000001
#> 7192      England   E12000002               North West   E08000001
#> 7193      England   E12000002               North West   E08000002
#> 7194      England   E12000002               North West   E08000002
#> 7195      England   E12000002               North West   E08000002
#> 7196      England   E12000002               North West   E08000003
#> 7197      England   E12000002               North West   E08000003
#> 7198      England   E12000002               North West   E08000003
#> 7199      England   E12000002               North West   E08000004
#> 7200      England   E12000002               North West   E08000004
#> 7201      England   E12000002               North West   E08000004
#> 7202      England   E12000002               North West   E08000005
#> 7203      England   E12000002               North West   E08000005
#> 7204      England   E12000002               North West   E08000005
#> 7205      England   E12000002               North West   E08000006
#> 7206      England   E12000002               North West   E08000006
#> 7207      England   E12000002               North West   E08000006
#> 7208      England   E12000002               North West   E08000007
#> 7209      England   E12000002               North West   E08000007
#> 7210      England   E12000002               North West   E08000007
#> 7211      England   E12000002               North West   E08000008
#> 7212      England   E12000002               North West   E08000008
#> 7213      England   E12000002               North West   E08000008
#> 7214      England   E12000002               North West   E08000009
#> 7215      England   E12000002               North West   E08000009
#> 7216      England   E12000002               North West   E08000009
#> 7217      England   E12000002               North West   E08000010
#> 7218      England   E12000002               North West   E08000010
#> 7219      England   E12000002               North West   E08000010
#> 7220      England   E12000002               North West   E08000011
#> 7221      England   E12000002               North West   E08000011
#> 7222      England   E12000002               North West   E08000011
#> 7223      England   E12000002               North West   E08000012
#> 7224      England   E12000002               North West   E08000012
#> 7225      England   E12000002               North West   E08000012
#> 7226      England   E12000002               North West   E08000013
#> 7227      England   E12000002               North West   E08000013
#> 7228      England   E12000002               North West   E08000013
#> 7229      England   E12000002               North West   E08000014
#> 7230      England   E12000002               North West   E08000014
#> 7231      England   E12000002               North West   E08000014
#> 7232      England   E12000002               North West   E08000015
#> 7233      England   E12000002               North West   E08000015
#> 7234      England   E12000002               North West   E08000015
#> 7235      England   E12000002               North West   E10000017
#> 7236      England   E12000002               North West   E10000017
#> 7237      England   E12000002               North West   E10000017
#> 7238      England   E12000003 Yorkshire and The Humber        <NA>
#> 7239      England   E12000003 Yorkshire and The Humber        <NA>
#> 7240      England   E12000003 Yorkshire and The Humber        <NA>
#> 7241      England   E12000003 Yorkshire and The Humber        <NA>
#> 7242      England   E12000003 Yorkshire and The Humber   E06000010
#> 7243      England   E12000003 Yorkshire and The Humber   E06000010
#> 7244      England   E12000003 Yorkshire and The Humber   E06000010
#> 7245      England   E12000003 Yorkshire and The Humber   E06000011
#> 7246      England   E12000003 Yorkshire and The Humber   E06000011
#> 7247      England   E12000003 Yorkshire and The Humber   E06000011
#> 7248      England   E12000003 Yorkshire and The Humber   E06000012
#> 7249      England   E12000003 Yorkshire and The Humber   E06000012
#> 7250      England   E12000003 Yorkshire and The Humber   E06000012
#> 7251      England   E12000003 Yorkshire and The Humber   E06000013
#> 7252      England   E12000003 Yorkshire and The Humber   E06000013
#> 7253      England   E12000003 Yorkshire and The Humber   E06000013
#> 7254      England   E12000003 Yorkshire and The Humber   E06000014
#> 7255      England   E12000003 Yorkshire and The Humber   E06000014
#> 7256      England   E12000003 Yorkshire and The Humber   E06000014
#> 7257      England   E12000003 Yorkshire and The Humber   E06000065
#> 7258      England   E12000003 Yorkshire and The Humber   E06000065
#> 7259      England   E12000003 Yorkshire and The Humber   E06000065
#> 7260      England   E12000003 Yorkshire and The Humber   E08000016
#> 7261      England   E12000003 Yorkshire and The Humber   E08000016
#> 7262      England   E12000003 Yorkshire and The Humber   E08000016
#> 7263      England   E12000003 Yorkshire and The Humber   E08000017
#> 7264      England   E12000003 Yorkshire and The Humber   E08000017
#> 7265      England   E12000003 Yorkshire and The Humber   E08000017
#> 7266      England   E12000003 Yorkshire and The Humber   E08000018
#> 7267      England   E12000003 Yorkshire and The Humber   E08000018
#> 7268      England   E12000003 Yorkshire and The Humber   E08000018
#> 7269      England   E12000003 Yorkshire and The Humber   E08000019
#> 7270      England   E12000003 Yorkshire and The Humber   E08000019
#> 7271      England   E12000003 Yorkshire and The Humber   E08000019
#> 7272      England   E12000003 Yorkshire and The Humber   E08000032
#> 7273      England   E12000003 Yorkshire and The Humber   E08000032
#> 7274      England   E12000003 Yorkshire and The Humber   E08000032
#> 7275      England   E12000003 Yorkshire and The Humber   E08000033
#> 7276      England   E12000003 Yorkshire and The Humber   E08000033
#> 7277      England   E12000003 Yorkshire and The Humber   E08000033
#> 7278      England   E12000003 Yorkshire and The Humber   E08000034
#> 7279      England   E12000003 Yorkshire and The Humber   E08000034
#> 7280      England   E12000003 Yorkshire and The Humber   E08000034
#> 7281      England   E12000003 Yorkshire and The Humber   E08000035
#> 7282      England   E12000003 Yorkshire and The Humber   E08000035
#> 7283      England   E12000003 Yorkshire and The Humber   E08000035
#> 7284      England   E12000003 Yorkshire and The Humber   E08000036
#> 7285      England   E12000003 Yorkshire and The Humber   E08000036
#> 7286      England   E12000003 Yorkshire and The Humber   E08000036
#> 7287      England   E12000004            East Midlands        <NA>
#> 7288      England   E12000004            East Midlands        <NA>
#> 7289      England   E12000004            East Midlands        <NA>
#> 7290      England   E12000004            East Midlands        <NA>
#> 7291      England   E12000004            East Midlands   E06000015
#> 7292      England   E12000004            East Midlands   E06000015
#> 7293      England   E12000004            East Midlands   E06000015
#> 7294      England   E12000004            East Midlands   E06000016
#> 7295      England   E12000004            East Midlands   E06000016
#> 7296      England   E12000004            East Midlands   E06000016
#> 7297      England   E12000004            East Midlands   E06000017
#> 7298      England   E12000004            East Midlands   E06000017
#> 7299      England   E12000004            East Midlands   E06000018
#> 7300      England   E12000004            East Midlands   E06000018
#> 7301      England   E12000004            East Midlands   E06000018
#> 7302      England   E12000004            East Midlands   E06000061
#> 7303      England   E12000004            East Midlands   E06000061
#> 7304      England   E12000004            East Midlands   E06000061
#> 7305      England   E12000004            East Midlands   E06000062
#> 7306      England   E12000004            East Midlands   E06000062
#> 7307      England   E12000004            East Midlands   E06000062
#> 7308      England   E12000004            East Midlands   E10000007
#> 7309      England   E12000004            East Midlands   E10000007
#> 7310      England   E12000004            East Midlands   E10000007
#> 7311      England   E12000004            East Midlands   E10000018
#> 7312      England   E12000004            East Midlands   E10000018
#> 7313      England   E12000004            East Midlands   E10000018
#> 7314      England   E12000004            East Midlands   E10000019
#> 7315      England   E12000004            East Midlands   E10000019
#> 7316      England   E12000004            East Midlands   E10000019
#> 7317      England   E12000004            East Midlands   E10000024
#> 7318      England   E12000004            East Midlands   E10000024
#> 7319      England   E12000004            East Midlands   E10000024
#> 7320      England   E12000005            West Midlands        <NA>
#> 7321      England   E12000005            West Midlands        <NA>
#> 7322      England   E12000005            West Midlands        <NA>
#> 7323      England   E12000005            West Midlands        <NA>
#> 7324      England   E12000005            West Midlands   E06000019
#> 7325      England   E12000005            West Midlands   E06000019
#> 7326      England   E12000005            West Midlands   E06000019
#> 7327      England   E12000005            West Midlands   E06000020
#> 7328      England   E12000005            West Midlands   E06000020
#> 7329      England   E12000005            West Midlands   E06000020
#> 7330      England   E12000005            West Midlands   E06000021
#> 7331      England   E12000005            West Midlands   E06000021
#> 7332      England   E12000005            West Midlands   E06000021
#> 7333      England   E12000005            West Midlands   E06000051
#> 7334      England   E12000005            West Midlands   E06000051
#> 7335      England   E12000005            West Midlands   E06000051
#> 7336      England   E12000005            West Midlands   E08000025
#> 7337      England   E12000005            West Midlands   E08000025
#> 7338      England   E12000005            West Midlands   E08000025
#> 7339      England   E12000005            West Midlands   E08000026
#> 7340      England   E12000005            West Midlands   E08000026
#> 7341      England   E12000005            West Midlands   E08000026
#> 7342      England   E12000005            West Midlands   E08000027
#> 7343      England   E12000005            West Midlands   E08000027
#> 7344      England   E12000005            West Midlands   E08000027
#> 7345      England   E12000005            West Midlands   E08000028
#> 7346      England   E12000005            West Midlands   E08000028
#> 7347      England   E12000005            West Midlands   E08000028
#> 7348      England   E12000005            West Midlands   E08000029
#> 7349      England   E12000005            West Midlands   E08000029
#> 7350      England   E12000005            West Midlands   E08000029
#> 7351      England   E12000005            West Midlands   E08000030
#> 7352      England   E12000005            West Midlands   E08000030
#> 7353      England   E12000005            West Midlands   E08000030
#> 7354      England   E12000005            West Midlands   E08000031
#> 7355      England   E12000005            West Midlands   E08000031
#> 7356      England   E12000005            West Midlands   E08000031
#> 7357      England   E12000005            West Midlands   E10000028
#> 7358      England   E12000005            West Midlands   E10000028
#> 7359      England   E12000005            West Midlands   E10000028
#> 7360      England   E12000005            West Midlands   E10000031
#> 7361      England   E12000005            West Midlands   E10000031
#> 7362      England   E12000005            West Midlands   E10000031
#> 7363      England   E12000005            West Midlands   E10000034
#> 7364      England   E12000005            West Midlands   E10000034
#> 7365      England   E12000005            West Midlands   E10000034
#> 7366      England   E12000006          East of England        <NA>
#> 7367      England   E12000006          East of England        <NA>
#> 7368      England   E12000006          East of England        <NA>
#> 7369      England   E12000006          East of England        <NA>
#> 7370      England   E12000006          East of England   E06000031
#> 7371      England   E12000006          East of England   E06000031
#> 7372      England   E12000006          East of England   E06000031
#> 7373      England   E12000006          East of England   E06000032
#> 7374      England   E12000006          East of England   E06000032
#> 7375      England   E12000006          East of England   E06000032
#> 7376      England   E12000006          East of England   E06000033
#> 7377      England   E12000006          East of England   E06000033
#> 7378      England   E12000006          East of England   E06000033
#> 7379      England   E12000006          East of England   E06000034
#> 7380      England   E12000006          East of England   E06000034
#> 7381      England   E12000006          East of England   E06000034
#> 7382      England   E12000006          East of England   E06000055
#> 7383      England   E12000006          East of England   E06000055
#> 7384      England   E12000006          East of England   E06000055
#> 7385      England   E12000006          East of England   E06000056
#> 7386      England   E12000006          East of England   E06000056
#> 7387      England   E12000006          East of England   E06000056
#> 7388      England   E12000006          East of England   E10000003
#> 7389      England   E12000006          East of England   E10000003
#> 7390      England   E12000006          East of England   E10000003
#> 7391      England   E12000006          East of England   E10000012
#> 7392      England   E12000006          East of England   E10000012
#> 7393      England   E12000006          East of England   E10000012
#> 7394      England   E12000006          East of England   E10000015
#> 7395      England   E12000006          East of England   E10000015
#> 7396      England   E12000006          East of England   E10000015
#> 7397      England   E12000006          East of England   E10000020
#> 7398      England   E12000006          East of England   E10000020
#> 7399      England   E12000006          East of England   E10000020
#> 7400      England   E12000006          East of England   E10000029
#> 7401      England   E12000006          East of England   E10000029
#> 7402      England   E12000006          East of England   E10000029
#> 7403      England   E12000007                   London        <NA>
#> 7404      England   E12000007                   London        <NA>
#> 7405      England   E12000007                   London        <NA>
#> 7406      England   E12000007                   London        <NA>
#> 7407      England   E12000007                   London   E09000001
#> 7408      England   E12000007                   London   E09000002
#> 7409      England   E12000007                   London   E09000002
#> 7410      England   E12000007                   London   E09000002
#> 7411      England   E12000007                   London   E09000003
#> 7412      England   E12000007                   London   E09000003
#> 7413      England   E12000007                   London   E09000003
#> 7414      England   E12000007                   London   E09000004
#> 7415      England   E12000007                   London   E09000004
#> 7416      England   E12000007                   London   E09000004
#> 7417      England   E12000007                   London   E09000005
#> 7418      England   E12000007                   London   E09000005
#> 7419      England   E12000007                   London   E09000005
#> 7420      England   E12000007                   London   E09000006
#> 7421      England   E12000007                   London   E09000006
#> 7422      England   E12000007                   London   E09000006
#> 7423      England   E12000007                   London   E09000007
#> 7424      England   E12000007                   London   E09000007
#> 7425      England   E12000007                   London   E09000007
#> 7426      England   E12000007                   London   E09000008
#> 7427      England   E12000007                   London   E09000008
#> 7428      England   E12000007                   London   E09000008
#> 7429      England   E12000007                   London   E09000009
#> 7430      England   E12000007                   London   E09000009
#> 7431      England   E12000007                   London   E09000009
#> 7432      England   E12000007                   London   E09000010
#> 7433      England   E12000007                   London   E09000010
#> 7434      England   E12000007                   London   E09000010
#> 7435      England   E12000007                   London   E09000011
#> 7436      England   E12000007                   London   E09000011
#> 7437      England   E12000007                   London   E09000011
#> 7438      England   E12000007                   London   E09000012
#> 7439      England   E12000007                   London   E09000012
#> 7440      England   E12000007                   London   E09000012
#> 7441      England   E12000007                   London   E09000013
#> 7442      England   E12000007                   London   E09000013
#> 7443      England   E12000007                   London   E09000013
#> 7444      England   E12000007                   London   E09000014
#> 7445      England   E12000007                   London   E09000014
#> 7446      England   E12000007                   London   E09000014
#> 7447      England   E12000007                   London   E09000015
#> 7448      England   E12000007                   London   E09000015
#> 7449      England   E12000007                   London   E09000015
#> 7450      England   E12000007                   London   E09000016
#> 7451      England   E12000007                   London   E09000016
#> 7452      England   E12000007                   London   E09000016
#> 7453      England   E12000007                   London   E09000017
#> 7454      England   E12000007                   London   E09000017
#> 7455      England   E12000007                   London   E09000017
#> 7456      England   E12000007                   London   E09000018
#> 7457      England   E12000007                   London   E09000018
#> 7458      England   E12000007                   London   E09000018
#> 7459      England   E12000007                   London   E09000019
#> 7460      England   E12000007                   London   E09000019
#> 7461      England   E12000007                   London   E09000019
#> 7462      England   E12000007                   London   E09000020
#> 7463      England   E12000007                   London   E09000020
#> 7464      England   E12000007                   London   E09000020
#> 7465      England   E12000007                   London   E09000021
#> 7466      England   E12000007                   London   E09000021
#> 7467      England   E12000007                   London   E09000021
#> 7468      England   E12000007                   London   E09000022
#> 7469      England   E12000007                   London   E09000022
#> 7470      England   E12000007                   London   E09000022
#> 7471      England   E12000007                   London   E09000023
#> 7472      England   E12000007                   London   E09000023
#> 7473      England   E12000007                   London   E09000023
#> 7474      England   E12000007                   London   E09000024
#> 7475      England   E12000007                   London   E09000024
#> 7476      England   E12000007                   London   E09000024
#> 7477      England   E12000007                   London   E09000025
#> 7478      England   E12000007                   London   E09000025
#> 7479      England   E12000007                   London   E09000025
#> 7480      England   E12000007                   London   E09000026
#> 7481      England   E12000007                   London   E09000026
#> 7482      England   E12000007                   London   E09000026
#> 7483      England   E12000007                   London   E09000027
#> 7484      England   E12000007                   London   E09000027
#> 7485      England   E12000007                   London   E09000027
#> 7486      England   E12000007                   London   E09000028
#> 7487      England   E12000007                   London   E09000028
#> 7488      England   E12000007                   London   E09000028
#> 7489      England   E12000007                   London   E09000029
#> 7490      England   E12000007                   London   E09000029
#> 7491      England   E12000007                   London   E09000029
#> 7492      England   E12000007                   London   E09000030
#> 7493      England   E12000007                   London   E09000030
#> 7494      England   E12000007                   London   E09000030
#> 7495      England   E12000007                   London   E09000031
#> 7496      England   E12000007                   London   E09000031
#> 7497      England   E12000007                   London   E09000031
#> 7498      England   E12000007                   London   E09000032
#> 7499      England   E12000007                   London   E09000032
#> 7500      England   E12000007                   London   E09000032
#> 7501      England   E12000007                   London   E09000033
#> 7502      England   E12000007                   London   E09000033
#> 7503      England   E12000007                   London   E09000033
#> 7504      England   E12000008               South East        <NA>
#> 7505      England   E12000008               South East        <NA>
#> 7506      England   E12000008               South East        <NA>
#> 7507      England   E12000008               South East        <NA>
#> 7508      England   E12000008               South East   E06000035
#> 7509      England   E12000008               South East   E06000035
#> 7510      England   E12000008               South East   E06000035
#> 7511      England   E12000008               South East   E06000036
#> 7512      England   E12000008               South East   E06000036
#> 7513      England   E12000008               South East   E06000036
#> 7514      England   E12000008               South East   E06000037
#> 7515      England   E12000008               South East   E06000037
#> 7516      England   E12000008               South East   E06000037
#> 7517      England   E12000008               South East   E06000038
#> 7518      England   E12000008               South East   E06000038
#> 7519      England   E12000008               South East   E06000038
#> 7520      England   E12000008               South East   E06000039
#> 7521      England   E12000008               South East   E06000039
#> 7522      England   E12000008               South East   E06000039
#> 7523      England   E12000008               South East   E06000040
#> 7524      England   E12000008               South East   E06000040
#> 7525      England   E12000008               South East   E06000040
#> 7526      England   E12000008               South East   E06000041
#> 7527      England   E12000008               South East   E06000041
#> 7528      England   E12000008               South East   E06000041
#> 7529      England   E12000008               South East   E06000042
#> 7530      England   E12000008               South East   E06000042
#> 7531      England   E12000008               South East   E06000042
#> 7532      England   E12000008               South East   E06000043
#> 7533      England   E12000008               South East   E06000043
#> 7534      England   E12000008               South East   E06000043
#> 7535      England   E12000008               South East   E06000044
#> 7536      England   E12000008               South East   E06000044
#> 7537      England   E12000008               South East   E06000044
#> 7538      England   E12000008               South East   E06000045
#> 7539      England   E12000008               South East   E06000045
#> 7540      England   E12000008               South East   E06000045
#> 7541      England   E12000008               South East   E06000046
#> 7542      England   E12000008               South East   E06000046
#> 7543      England   E12000008               South East   E06000046
#> 7544      England   E12000008               South East   E06000060
#> 7545      England   E12000008               South East   E06000060
#> 7546      England   E12000008               South East   E06000060
#> 7547      England   E12000008               South East   E10000011
#> 7548      England   E12000008               South East   E10000011
#> 7549      England   E12000008               South East   E10000011
#> 7550      England   E12000008               South East   E10000014
#> 7551      England   E12000008               South East   E10000014
#> 7552      England   E12000008               South East   E10000014
#> 7553      England   E12000008               South East   E10000016
#> 7554      England   E12000008               South East   E10000016
#> 7555      England   E12000008               South East   E10000016
#> 7556      England   E12000008               South East   E10000025
#> 7557      England   E12000008               South East   E10000025
#> 7558      England   E12000008               South East   E10000025
#> 7559      England   E12000008               South East   E10000030
#> 7560      England   E12000008               South East   E10000030
#> 7561      England   E12000008               South East   E10000030
#> 7562      England   E12000008               South East   E10000032
#> 7563      England   E12000008               South East   E10000032
#> 7564      England   E12000008               South East   E10000032
#> 7565      England   E12000009               South West        <NA>
#> 7566      England   E12000009               South West        <NA>
#> 7567      England   E12000009               South West        <NA>
#> 7568      England   E12000009               South West        <NA>
#> 7569      England   E12000009               South West   E06000022
#> 7570      England   E12000009               South West   E06000022
#> 7571      England   E12000009               South West   E06000022
#> 7572      England   E12000009               South West   E06000023
#> 7573      England   E12000009               South West   E06000023
#> 7574      England   E12000009               South West   E06000023
#> 7575      England   E12000009               South West   E06000024
#> 7576      England   E12000009               South West   E06000024
#> 7577      England   E12000009               South West   E06000024
#> 7578      England   E12000009               South West   E06000025
#> 7579      England   E12000009               South West   E06000025
#> 7580      England   E12000009               South West   E06000025
#> 7581      England   E12000009               South West   E06000026
#> 7582      England   E12000009               South West   E06000026
#> 7583      England   E12000009               South West   E06000026
#> 7584      England   E12000009               South West   E06000027
#> 7585      England   E12000009               South West   E06000027
#> 7586      England   E12000009               South West   E06000027
#> 7587      England   E12000009               South West   E06000030
#> 7588      England   E12000009               South West   E06000030
#> 7589      England   E12000009               South West   E06000030
#> 7590      England   E12000009               South West   E06000052
#> 7591      England   E12000009               South West   E06000052
#> 7592      England   E12000009               South West   E06000052
#> 7593      England   E12000009               South West   E06000053
#> 7594      England   E12000009               South West   E06000054
#> 7595      England   E12000009               South West   E06000054
#> 7596      England   E12000009               South West   E06000054
#> 7597      England   E12000009               South West   E06000058
#> 7598      England   E12000009               South West   E06000058
#> 7599      England   E12000009               South West   E06000058
#> 7600      England   E12000009               South West   E06000059
#> 7601      England   E12000009               South West   E06000059
#> 7602      England   E12000009               South West   E06000059
#> 7603      England   E12000009               South West   E06000066
#> 7604      England   E12000009               South West   E06000066
#> 7605      England   E12000009               South West   E06000066
#> 7606      England   E12000009               South West   E10000008
#> 7607      England   E12000009               South West   E10000008
#> 7608      England   E12000009               South West   E10000008
#> 7609      England   E12000009               South West   E10000013
#> 7610      England   E12000009               South West   E10000013
#> 7611      England   E12000009               South West   E10000013
#> 7612      England        <NA>                     <NA>        <NA>
#> 7613      England        <NA>                     <NA>        <NA>
#> 7614      England        <NA>                     <NA>        <NA>
#> 7615      England        <NA>                     <NA>        <NA>
#> 7616      England   E12000001               North East        <NA>
#> 7617      England   E12000001               North East        <NA>
#> 7618      England   E12000001               North East        <NA>
#> 7619      England   E12000001               North East        <NA>
#> 7620      England   E12000001               North East   E06000001
#> 7621      England   E12000001               North East   E06000001
#> 7622      England   E12000001               North East   E06000001
#> 7623      England   E12000001               North East   E06000002
#> 7624      England   E12000001               North East   E06000002
#> 7625      England   E12000001               North East   E06000002
#> 7626      England   E12000001               North East   E06000003
#> 7627      England   E12000001               North East   E06000003
#> 7628      England   E12000001               North East   E06000003
#> 7629      England   E12000001               North East   E06000004
#> 7630      England   E12000001               North East   E06000004
#> 7631      England   E12000001               North East   E06000004
#> 7632      England   E12000001               North East   E06000005
#> 7633      England   E12000001               North East   E06000005
#> 7634      England   E12000001               North East   E06000005
#> 7635      England   E12000001               North East   E06000047
#> 7636      England   E12000001               North East   E06000047
#> 7637      England   E12000001               North East   E06000047
#> 7638      England   E12000001               North East   E06000057
#> 7639      England   E12000001               North East   E06000057
#> 7640      England   E12000001               North East   E06000057
#> 7641      England   E12000001               North East   E08000021
#> 7642      England   E12000001               North East   E08000021
#> 7643      England   E12000001               North East   E08000021
#> 7644      England   E12000001               North East   E08000022
#> 7645      England   E12000001               North East   E08000022
#> 7646      England   E12000001               North East   E08000022
#> 7647      England   E12000001               North East   E08000023
#> 7648      England   E12000001               North East   E08000023
#> 7649      England   E12000001               North East   E08000023
#> 7650      England   E12000001               North East   E08000024
#> 7651      England   E12000001               North East   E08000024
#> 7652      England   E12000001               North East   E08000024
#> 7653      England   E12000001               North East   E08000037
#> 7654      England   E12000001               North East   E08000037
#> 7655      England   E12000001               North East   E08000037
#> 7656      England   E12000002               North West        <NA>
#> 7657      England   E12000002               North West        <NA>
#> 7658      England   E12000002               North West        <NA>
#> 7659      England   E12000002               North West        <NA>
#> 7660      England   E12000002               North West   E06000006
#> 7661      England   E12000002               North West   E06000006
#> 7662      England   E12000002               North West   E06000006
#> 7663      England   E12000002               North West   E06000007
#> 7664      England   E12000002               North West   E06000007
#> 7665      England   E12000002               North West   E06000007
#> 7666      England   E12000002               North West   E06000008
#> 7667      England   E12000002               North West   E06000008
#> 7668      England   E12000002               North West   E06000008
#> 7669      England   E12000002               North West   E06000009
#> 7670      England   E12000002               North West   E06000009
#> 7671      England   E12000002               North West   E06000009
#> 7672      England   E12000002               North West   E06000049
#> 7673      England   E12000002               North West   E06000049
#> 7674      England   E12000002               North West   E06000049
#> 7675      England   E12000002               North West   E06000050
#> 7676      England   E12000002               North West   E06000050
#> 7677      England   E12000002               North West   E06000050
#> 7678      England   E12000002               North West   E06000063
#> 7679      England   E12000002               North West   E06000063
#> 7680      England   E12000002               North West   E06000063
#> 7681      England   E12000002               North West   E06000064
#> 7682      England   E12000002               North West   E06000064
#> 7683      England   E12000002               North West   E06000064
#> 7684      England   E12000002               North West   E08000001
#> 7685      England   E12000002               North West   E08000001
#> 7686      England   E12000002               North West   E08000001
#> 7687      England   E12000002               North West   E08000002
#> 7688      England   E12000002               North West   E08000002
#> 7689      England   E12000002               North West   E08000002
#> 7690      England   E12000002               North West   E08000003
#> 7691      England   E12000002               North West   E08000003
#> 7692      England   E12000002               North West   E08000003
#>                                  la_name old_la_code education_phase
#> 1                                   <NA>          NA     All schools
#> 2                                   <NA>          NA         Primary
#> 3                                   <NA>          NA       Secondary
#> 4                                   <NA>          NA         Special
#> 5                                   <NA>          NA     All schools
#> 6                                   <NA>          NA         Primary
#> 7                                   <NA>          NA       Secondary
#> 8                                   <NA>          NA         Special
#> 9                             Hartlepool         805     All schools
#> 10                            Hartlepool         805         Primary
#> 11                            Hartlepool         805       Secondary
#> 12                            Hartlepool         805         Special
#> 13                         Middlesbrough         806     All schools
#> 14                         Middlesbrough         806         Primary
#> 15                         Middlesbrough         806       Secondary
#> 16                         Middlesbrough         806         Special
#> 17                  Redcar and Cleveland         807     All schools
#> 18                  Redcar and Cleveland         807         Primary
#> 19                  Redcar and Cleveland         807       Secondary
#> 20                  Redcar and Cleveland         807         Special
#> 21                      Stockton-on-Tees         808     All schools
#> 22                      Stockton-on-Tees         808         Primary
#> 23                      Stockton-on-Tees         808       Secondary
#> 24                      Stockton-on-Tees         808         Special
#> 25                            Darlington         841     All schools
#> 26                            Darlington         841         Primary
#> 27                            Darlington         841       Secondary
#> 28                            Darlington         841         Special
#> 29                         County Durham         840     All schools
#> 30                         County Durham         840         Primary
#> 31                         County Durham         840       Secondary
#> 32                         County Durham         840         Special
#> 33                        Northumberland         929     All schools
#> 34                        Northumberland         929         Primary
#> 35                        Northumberland         929       Secondary
#> 36                        Northumberland         929         Special
#> 37                   Newcastle upon Tyne         391     All schools
#> 38                   Newcastle upon Tyne         391         Primary
#> 39                   Newcastle upon Tyne         391       Secondary
#> 40                   Newcastle upon Tyne         391         Special
#> 41                        North Tyneside         392     All schools
#> 42                        North Tyneside         392         Primary
#> 43                        North Tyneside         392       Secondary
#> 44                        North Tyneside         392         Special
#> 45                        South Tyneside         393     All schools
#> 46                        South Tyneside         393         Primary
#> 47                        South Tyneside         393       Secondary
#> 48                        South Tyneside         393         Special
#> 49                            Sunderland         394     All schools
#> 50                            Sunderland         394         Primary
#> 51                            Sunderland         394       Secondary
#> 52                            Sunderland         394         Special
#> 53                             Gateshead         390     All schools
#> 54                             Gateshead         390         Primary
#> 55                             Gateshead         390       Secondary
#> 56                             Gateshead         390         Special
#> 57                                  <NA>          NA     All schools
#> 58                                  <NA>          NA         Primary
#> 59                                  <NA>          NA       Secondary
#> 60                                  <NA>          NA         Special
#> 61                                Halton         876     All schools
#> 62                                Halton         876         Primary
#> 63                                Halton         876       Secondary
#> 64                                Halton         876         Special
#> 65                            Warrington         877     All schools
#> 66                            Warrington         877         Primary
#> 67                            Warrington         877       Secondary
#> 68                            Warrington         877         Special
#> 69                 Blackburn with Darwen         889     All schools
#> 70                 Blackburn with Darwen         889         Primary
#> 71                 Blackburn with Darwen         889       Secondary
#> 72                 Blackburn with Darwen         889         Special
#> 73                             Blackpool         890     All schools
#> 74                             Blackpool         890         Primary
#> 75                             Blackpool         890       Secondary
#> 76                             Blackpool         890         Special
#> 77                         Cheshire East         895     All schools
#> 78                         Cheshire East         895         Primary
#> 79                         Cheshire East         895       Secondary
#> 80                         Cheshire East         895         Special
#> 81             Cheshire West and Chester         896     All schools
#> 82             Cheshire West and Chester         896         Primary
#> 83             Cheshire West and Chester         896       Secondary
#> 84             Cheshire West and Chester         896         Special
#> 85                            Cumberland         942     All schools
#> 86                            Cumberland         942         Primary
#> 87                            Cumberland         942       Secondary
#> 88                            Cumberland         942         Special
#> 89               Westmorland and Furness         943     All schools
#> 90               Westmorland and Furness         943         Primary
#> 91               Westmorland and Furness         943       Secondary
#> 92               Westmorland and Furness         943         Special
#> 93                                Bolton         350     All schools
#> 94                                Bolton         350         Primary
#> 95                                Bolton         350       Secondary
#> 96                                Bolton         350         Special
#> 97                                  Bury         351     All schools
#> 98                                  Bury         351         Primary
#> 99                                  Bury         351       Secondary
#> 100                                 Bury         351         Special
#> 101                           Manchester         352     All schools
#> 102                           Manchester         352         Primary
#> 103                           Manchester         352       Secondary
#> 104                           Manchester         352         Special
#> 105                               Oldham         353     All schools
#> 106                               Oldham         353         Primary
#> 107                               Oldham         353       Secondary
#> 108                               Oldham         353         Special
#> 109                             Rochdale         354     All schools
#> 110                             Rochdale         354         Primary
#> 111                             Rochdale         354       Secondary
#> 112                             Rochdale         354         Special
#> 113                              Salford         355     All schools
#> 114                              Salford         355         Primary
#> 115                              Salford         355       Secondary
#> 116                              Salford         355         Special
#> 117                            Stockport         356     All schools
#> 118                            Stockport         356         Primary
#> 119                            Stockport         356       Secondary
#> 120                            Stockport         356         Special
#> 121                             Tameside         357     All schools
#> 122                             Tameside         357         Primary
#> 123                             Tameside         357       Secondary
#> 124                             Tameside         357         Special
#> 125                             Trafford         358     All schools
#> 126                             Trafford         358         Primary
#> 127                             Trafford         358       Secondary
#> 128                             Trafford         358         Special
#> 129                                Wigan         359     All schools
#> 130                                Wigan         359         Primary
#> 131                                Wigan         359       Secondary
#> 132                                Wigan         359         Special
#> 133                             Knowsley         340     All schools
#> 134                             Knowsley         340         Primary
#> 135                             Knowsley         340       Secondary
#> 136                             Knowsley         340         Special
#> 137                            Liverpool         341     All schools
#> 138                            Liverpool         341         Primary
#> 139                            Liverpool         341       Secondary
#> 140                            Liverpool         341         Special
#> 141                           St. Helens         342     All schools
#> 142                           St. Helens         342         Primary
#> 143                           St. Helens         342       Secondary
#> 144                           St. Helens         342         Special
#> 145                               Sefton         343     All schools
#> 146                               Sefton         343         Primary
#> 147                               Sefton         343       Secondary
#> 148                               Sefton         343         Special
#> 149                               Wirral         344     All schools
#> 150                               Wirral         344         Primary
#> 151                               Wirral         344       Secondary
#> 152                               Wirral         344         Special
#> 153                           Lancashire         888     All schools
#> 154                           Lancashire         888         Primary
#> 155                           Lancashire         888       Secondary
#> 156                           Lancashire         888         Special
#> 157                                 <NA>          NA     All schools
#> 158                                 <NA>          NA         Primary
#> 159                                 <NA>          NA       Secondary
#> 160                                 <NA>          NA         Special
#> 161          Kingston upon Hull, City of         810     All schools
#> 162          Kingston upon Hull, City of         810         Primary
#> 163          Kingston upon Hull, City of         810       Secondary
#> 164          Kingston upon Hull, City of         810         Special
#> 165             East Riding of Yorkshire         811     All schools
#> 166             East Riding of Yorkshire         811         Primary
#> 167             East Riding of Yorkshire         811       Secondary
#> 168             East Riding of Yorkshire         811         Special
#> 169              North East Lincolnshire         812     All schools
#> 170              North East Lincolnshire         812         Primary
#> 171              North East Lincolnshire         812       Secondary
#> 172              North East Lincolnshire         812         Special
#> 173                   North Lincolnshire         813     All schools
#> 174                   North Lincolnshire         813         Primary
#> 175                   North Lincolnshire         813       Secondary
#> 176                   North Lincolnshire         813         Special
#> 177                                 York         816     All schools
#> 178                                 York         816         Primary
#> 179                                 York         816       Secondary
#> 180                                 York         816         Special
#> 181                      North Yorkshire         815     All schools
#> 182                      North Yorkshire         815         Primary
#> 183                      North Yorkshire         815       Secondary
#> 184                      North Yorkshire         815         Special
#> 185                             Barnsley         370     All schools
#> 186                             Barnsley         370         Primary
#> 187                             Barnsley         370       Secondary
#> 188                             Barnsley         370         Special
#> 189                            Doncaster         371     All schools
#> 190                            Doncaster         371         Primary
#> 191                            Doncaster         371       Secondary
#> 192                            Doncaster         371         Special
#> 193                            Rotherham         372     All schools
#> 194                            Rotherham         372         Primary
#> 195                            Rotherham         372       Secondary
#> 196                            Rotherham         372         Special
#> 197                            Sheffield         373     All schools
#> 198                            Sheffield         373         Primary
#> 199                            Sheffield         373       Secondary
#> 200                            Sheffield         373         Special
#> 201                             Bradford         380     All schools
#> 202                             Bradford         380         Primary
#> 203                             Bradford         380       Secondary
#> 204                             Bradford         380         Special
#> 205                           Calderdale         381     All schools
#> 206                           Calderdale         381         Primary
#> 207                           Calderdale         381       Secondary
#> 208                           Calderdale         381         Special
#> 209                             Kirklees         382     All schools
#> 210                             Kirklees         382         Primary
#> 211                             Kirklees         382       Secondary
#> 212                             Kirklees         382         Special
#> 213                                Leeds         383     All schools
#> 214                                Leeds         383         Primary
#> 215                                Leeds         383       Secondary
#> 216                                Leeds         383         Special
#> 217                            Wakefield         384     All schools
#> 218                            Wakefield         384         Primary
#> 219                            Wakefield         384       Secondary
#> 220                            Wakefield         384         Special
#> 221                                 <NA>          NA     All schools
#> 222                                 <NA>          NA         Primary
#> 223                                 <NA>          NA       Secondary
#> 224                                 <NA>          NA         Special
#> 225                                Derby         831     All schools
#> 226                                Derby         831         Primary
#> 227                                Derby         831       Secondary
#> 228                                Derby         831         Special
#> 229                            Leicester         856     All schools
#> 230                            Leicester         856         Primary
#> 231                            Leicester         856       Secondary
#> 232                            Leicester         856         Special
#> 233                              Rutland         857     All schools
#> 234                              Rutland         857         Primary
#> 235                              Rutland         857       Secondary
#> 236                           Nottingham         892     All schools
#> 237                           Nottingham         892         Primary
#> 238                           Nottingham         892       Secondary
#> 239                           Nottingham         892         Special
#> 240               North Northamptonshire         940     All schools
#> 241               North Northamptonshire         940         Primary
#> 242               North Northamptonshire         940       Secondary
#> 243               North Northamptonshire         940         Special
#> 244                West Northamptonshire         941     All schools
#> 245                West Northamptonshire         941         Primary
#> 246                West Northamptonshire         941       Secondary
#> 247                West Northamptonshire         941         Special
#> 248                           Derbyshire         830     All schools
#> 249                           Derbyshire         830         Primary
#> 250                           Derbyshire         830       Secondary
#> 251                           Derbyshire         830         Special
#> 252                       Leicestershire         855     All schools
#> 253                       Leicestershire         855         Primary
#> 254                       Leicestershire         855       Secondary
#> 255                       Leicestershire         855         Special
#> 256                         Lincolnshire         925     All schools
#> 257                         Lincolnshire         925         Primary
#> 258                         Lincolnshire         925       Secondary
#> 259                         Lincolnshire         925         Special
#> 260                      Nottinghamshire         891     All schools
#> 261                      Nottinghamshire         891         Primary
#> 262                      Nottinghamshire         891       Secondary
#> 263                      Nottinghamshire         891         Special
#> 264                                 <NA>          NA     All schools
#> 265                                 <NA>          NA         Primary
#> 266                                 <NA>          NA       Secondary
#> 267                                 <NA>          NA         Special
#> 268             Herefordshire, County of         884     All schools
#> 269             Herefordshire, County of         884         Primary
#> 270             Herefordshire, County of         884       Secondary
#> 271             Herefordshire, County of         884         Special
#> 272                   Telford and Wrekin         894     All schools
#> 273                   Telford and Wrekin         894         Primary
#> 274                   Telford and Wrekin         894       Secondary
#> 275                   Telford and Wrekin         894         Special
#> 276                       Stoke-on-Trent         861     All schools
#> 277                       Stoke-on-Trent         861         Primary
#> 278                       Stoke-on-Trent         861       Secondary
#> 279                       Stoke-on-Trent         861         Special
#> 280                           Shropshire         893     All schools
#> 281                           Shropshire         893         Primary
#> 282                           Shropshire         893       Secondary
#> 283                           Shropshire         893         Special
#> 284                           Birmingham         330     All schools
#> 285                           Birmingham         330         Primary
#> 286                           Birmingham         330       Secondary
#> 287                           Birmingham         330         Special
#> 288                             Coventry         331     All schools
#> 289                             Coventry         331         Primary
#> 290                             Coventry         331       Secondary
#> 291                             Coventry         331         Special
#> 292                               Dudley         332     All schools
#> 293                               Dudley         332         Primary
#> 294                               Dudley         332       Secondary
#> 295                               Dudley         332         Special
#> 296                             Sandwell         333     All schools
#> 297                             Sandwell         333         Primary
#> 298                             Sandwell         333       Secondary
#> 299                             Sandwell         333         Special
#> 300                             Solihull         334     All schools
#> 301                             Solihull         334         Primary
#> 302                             Solihull         334       Secondary
#> 303                             Solihull         334         Special
#> 304                              Walsall         335     All schools
#> 305                              Walsall         335         Primary
#> 306                              Walsall         335       Secondary
#> 307                              Walsall         335         Special
#> 308                        Wolverhampton         336     All schools
#> 309                        Wolverhampton         336         Primary
#> 310                        Wolverhampton         336       Secondary
#> 311                        Wolverhampton         336         Special
#> 312                        Staffordshire         860     All schools
#> 313                        Staffordshire         860         Primary
#> 314                        Staffordshire         860       Secondary
#> 315                        Staffordshire         860         Special
#> 316                         Warwickshire         937     All schools
#> 317                         Warwickshire         937         Primary
#> 318                         Warwickshire         937       Secondary
#> 319                         Warwickshire         937         Special
#> 320                       Worcestershire         885     All schools
#> 321                       Worcestershire         885         Primary
#> 322                       Worcestershire         885       Secondary
#> 323                       Worcestershire         885         Special
#> 324                                 <NA>          NA     All schools
#> 325                                 <NA>          NA         Primary
#> 326                                 <NA>          NA       Secondary
#> 327                                 <NA>          NA         Special
#> 328                         Peterborough         874     All schools
#> 329                         Peterborough         874         Primary
#> 330                         Peterborough         874       Secondary
#> 331                         Peterborough         874         Special
#> 332                                Luton         821     All schools
#> 333                                Luton         821         Primary
#> 334                                Luton         821       Secondary
#> 335                                Luton         821         Special
#> 336                      Southend-on-Sea         882     All schools
#> 337                      Southend-on-Sea         882         Primary
#> 338                      Southend-on-Sea         882       Secondary
#> 339                      Southend-on-Sea         882         Special
#> 340                             Thurrock         883     All schools
#> 341                             Thurrock         883         Primary
#> 342                             Thurrock         883       Secondary
#> 343                             Thurrock         883         Special
#> 344                              Bedford         822     All schools
#> 345                              Bedford         822         Primary
#> 346                              Bedford         822       Secondary
#> 347                              Bedford         822         Special
#> 348                 Central Bedfordshire         823     All schools
#> 349                 Central Bedfordshire         823         Primary
#> 350                 Central Bedfordshire         823       Secondary
#> 351                 Central Bedfordshire         823         Special
#> 352                       Cambridgeshire         873     All schools
#> 353                       Cambridgeshire         873         Primary
#> 354                       Cambridgeshire         873       Secondary
#> 355                       Cambridgeshire         873         Special
#> 356                                Essex         881     All schools
#> 357                                Essex         881         Primary
#> 358                                Essex         881       Secondary
#> 359                                Essex         881         Special
#> 360                        Hertfordshire         919     All schools
#> 361                        Hertfordshire         919         Primary
#> 362                        Hertfordshire         919       Secondary
#> 363                        Hertfordshire         919         Special
#> 364                              Norfolk         926     All schools
#> 365                              Norfolk         926         Primary
#> 366                              Norfolk         926       Secondary
#> 367                              Norfolk         926         Special
#> 368                              Suffolk         935     All schools
#> 369                              Suffolk         935         Primary
#> 370                              Suffolk         935       Secondary
#> 371                              Suffolk         935         Special
#> 372                                 <NA>          NA     All schools
#> 373                                 <NA>          NA         Primary
#> 374                                 <NA>          NA       Secondary
#> 375                                 <NA>          NA         Special
#> 376                       City of London         201     All schools
#> 377                       City of London         201         Primary
#> 378                 Barking and Dagenham         301     All schools
#> 379                 Barking and Dagenham         301         Primary
#> 380                 Barking and Dagenham         301       Secondary
#> 381                 Barking and Dagenham         301         Special
#> 382                               Barnet         302     All schools
#> 383                               Barnet         302         Primary
#> 384                               Barnet         302       Secondary
#> 385                               Barnet         302         Special
#> 386                               Bexley         303     All schools
#> 387                               Bexley         303         Primary
#> 388                               Bexley         303       Secondary
#> 389                               Bexley         303         Special
#> 390                                Brent         304     All schools
#> 391                                Brent         304         Primary
#> 392                                Brent         304       Secondary
#> 393                                Brent         304         Special
#> 394                              Bromley         305     All schools
#> 395                              Bromley         305         Primary
#> 396                              Bromley         305       Secondary
#> 397                              Bromley         305         Special
#> 398                               Camden         202     All schools
#> 399                               Camden         202         Primary
#> 400                               Camden         202       Secondary
#> 401                               Camden         202         Special
#> 402                              Croydon         306     All schools
#> 403                              Croydon         306         Primary
#> 404                              Croydon         306       Secondary
#> 405                              Croydon         306         Special
#> 406                               Ealing         307     All schools
#> 407                               Ealing         307         Primary
#> 408                               Ealing         307       Secondary
#> 409                               Ealing         307         Special
#> 410                              Enfield         308     All schools
#> 411                              Enfield         308         Primary
#> 412                              Enfield         308       Secondary
#> 413                              Enfield         308         Special
#> 414                            Greenwich         203     All schools
#> 415                            Greenwich         203         Primary
#> 416                            Greenwich         203       Secondary
#> 417                            Greenwich         203         Special
#> 418                              Hackney         204     All schools
#> 419                              Hackney         204         Primary
#> 420                              Hackney         204       Secondary
#> 421                              Hackney         204         Special
#> 422               Hammersmith and Fulham         205     All schools
#> 423               Hammersmith and Fulham         205         Primary
#> 424               Hammersmith and Fulham         205       Secondary
#> 425               Hammersmith and Fulham         205         Special
#> 426                             Haringey         309     All schools
#> 427                             Haringey         309         Primary
#> 428                             Haringey         309       Secondary
#> 429                             Haringey         309         Special
#> 430                               Harrow         310     All schools
#> 431                               Harrow         310         Primary
#> 432                               Harrow         310       Secondary
#> 433                               Harrow         310         Special
#> 434                             Havering         311     All schools
#> 435                             Havering         311         Primary
#> 436                             Havering         311       Secondary
#> 437                             Havering         311         Special
#> 438                           Hillingdon         312     All schools
#> 439                           Hillingdon         312         Primary
#> 440                           Hillingdon         312       Secondary
#> 441                           Hillingdon         312         Special
#> 442                             Hounslow         313     All schools
#> 443                             Hounslow         313         Primary
#> 444                             Hounslow         313       Secondary
#> 445                             Hounslow         313         Special
#> 446                            Islington         206     All schools
#> 447                            Islington         206         Primary
#> 448                            Islington         206       Secondary
#> 449                            Islington         206         Special
#> 450               Kensington and Chelsea         207     All schools
#> 451               Kensington and Chelsea         207         Primary
#> 452               Kensington and Chelsea         207       Secondary
#> 453               Kensington and Chelsea         207         Special
#> 454                 Kingston upon Thames         314     All schools
#> 455                 Kingston upon Thames         314         Primary
#> 456                 Kingston upon Thames         314       Secondary
#> 457                 Kingston upon Thames         314         Special
#> 458                              Lambeth         208     All schools
#> 459                              Lambeth         208         Primary
#> 460                              Lambeth         208       Secondary
#> 461                              Lambeth         208         Special
#> 462                             Lewisham         209     All schools
#> 463                             Lewisham         209         Primary
#> 464                             Lewisham         209       Secondary
#> 465                             Lewisham         209         Special
#> 466                               Merton         315     All schools
#> 467                               Merton         315         Primary
#> 468                               Merton         315       Secondary
#> 469                               Merton         315         Special
#> 470                               Newham         316     All schools
#> 471                               Newham         316         Primary
#> 472                               Newham         316       Secondary
#> 473                               Newham         316         Special
#> 474                            Redbridge         317     All schools
#> 475                            Redbridge         317         Primary
#> 476                            Redbridge         317       Secondary
#> 477                            Redbridge         317         Special
#> 478                 Richmond upon Thames         318     All schools
#> 479                 Richmond upon Thames         318         Primary
#> 480                 Richmond upon Thames         318       Secondary
#> 481                 Richmond upon Thames         318         Special
#> 482                            Southwark         210     All schools
#> 483                            Southwark         210         Primary
#> 484                            Southwark         210       Secondary
#> 485                            Southwark         210         Special
#> 486                               Sutton         319     All schools
#> 487                               Sutton         319         Primary
#> 488                               Sutton         319       Secondary
#> 489                               Sutton         319         Special
#> 490                        Tower Hamlets         211     All schools
#> 491                        Tower Hamlets         211         Primary
#> 492                        Tower Hamlets         211       Secondary
#> 493                        Tower Hamlets         211         Special
#> 494                       Waltham Forest         320     All schools
#> 495                       Waltham Forest         320         Primary
#> 496                       Waltham Forest         320       Secondary
#> 497                       Waltham Forest         320         Special
#> 498                           Wandsworth         212     All schools
#> 499                           Wandsworth         212         Primary
#> 500                           Wandsworth         212       Secondary
#> 501                           Wandsworth         212         Special
#> 502                          Westminster         213     All schools
#> 503                          Westminster         213         Primary
#> 504                          Westminster         213       Secondary
#> 505                          Westminster         213         Special
#> 506                                 <NA>          NA     All schools
#> 507                                 <NA>          NA         Primary
#> 508                                 <NA>          NA       Secondary
#> 509                                 <NA>          NA         Special
#> 510                               Medway         887     All schools
#> 511                               Medway         887         Primary
#> 512                               Medway         887       Secondary
#> 513                               Medway         887         Special
#> 514                     Bracknell Forest         867     All schools
#> 515                     Bracknell Forest         867         Primary
#> 516                     Bracknell Forest         867       Secondary
#> 517                     Bracknell Forest         867         Special
#> 518                       West Berkshire         869     All schools
#> 519                       West Berkshire         869         Primary
#> 520                       West Berkshire         869       Secondary
#> 521                       West Berkshire         869         Special
#> 522                              Reading         870     All schools
#> 523                              Reading         870         Primary
#> 524                              Reading         870       Secondary
#> 525                              Reading         870         Special
#> 526                               Slough         871     All schools
#> 527                               Slough         871         Primary
#> 528                               Slough         871       Secondary
#> 529                               Slough         871         Special
#> 530               Windsor and Maidenhead         868     All schools
#> 531               Windsor and Maidenhead         868         Primary
#> 532               Windsor and Maidenhead         868       Secondary
#> 533               Windsor and Maidenhead         868         Special
#> 534                            Wokingham         872     All schools
#> 535                            Wokingham         872         Primary
#> 536                            Wokingham         872       Secondary
#> 537                            Wokingham         872         Special
#> 538                        Milton Keynes         826     All schools
#> 539                        Milton Keynes         826         Primary
#> 540                        Milton Keynes         826       Secondary
#> 541                        Milton Keynes         826         Special
#> 542                    Brighton and Hove         846     All schools
#> 543                    Brighton and Hove         846         Primary
#> 544                    Brighton and Hove         846       Secondary
#> 545                    Brighton and Hove         846         Special
#> 546                           Portsmouth         851     All schools
#> 547                           Portsmouth         851         Primary
#> 548                           Portsmouth         851       Secondary
#> 549                           Portsmouth         851         Special
#> 550                          Southampton         852     All schools
#> 551                          Southampton         852         Primary
#> 552                          Southampton         852       Secondary
#> 553                          Southampton         852         Special
#> 554                        Isle of Wight         921     All schools
#> 555                        Isle of Wight         921         Primary
#> 556                        Isle of Wight         921       Secondary
#> 557                        Isle of Wight         921         Special
#> 558                      Buckinghamshire         825     All schools
#> 559                      Buckinghamshire         825         Primary
#> 560                      Buckinghamshire         825       Secondary
#> 561                      Buckinghamshire         825         Special
#> 562                          East Sussex         845     All schools
#> 563                          East Sussex         845         Primary
#> 564                          East Sussex         845       Secondary
#> 565                          East Sussex         845         Special
#> 566                            Hampshire         850     All schools
#> 567                            Hampshire         850         Primary
#> 568                            Hampshire         850       Secondary
#> 569                            Hampshire         850         Special
#> 570                                 Kent         886     All schools
#> 571                                 Kent         886         Primary
#> 572                                 Kent         886       Secondary
#> 573                                 Kent         886         Special
#> 574                          Oxfordshire         931     All schools
#> 575                          Oxfordshire         931         Primary
#> 576                          Oxfordshire         931       Secondary
#> 577                          Oxfordshire         931         Special
#> 578                               Surrey         936     All schools
#> 579                               Surrey         936         Primary
#> 580                               Surrey         936       Secondary
#> 581                               Surrey         936         Special
#> 582                          West Sussex         938     All schools
#> 583                          West Sussex         938         Primary
#> 584                          West Sussex         938       Secondary
#> 585                          West Sussex         938         Special
#> 586                                 <NA>          NA     All schools
#> 587                                 <NA>          NA         Primary
#> 588                                 <NA>          NA       Secondary
#> 589                                 <NA>          NA         Special
#> 590         Bath and North East Somerset         800     All schools
#> 591         Bath and North East Somerset         800         Primary
#> 592         Bath and North East Somerset         800       Secondary
#> 593         Bath and North East Somerset         800         Special
#> 594                     Bristol, City of         801     All schools
#> 595                     Bristol, City of         801         Primary
#> 596                     Bristol, City of         801       Secondary
#> 597                     Bristol, City of         801         Special
#> 598                       North Somerset         802     All schools
#> 599                       North Somerset         802         Primary
#> 600                       North Somerset         802       Secondary
#> 601                       North Somerset         802         Special
#> 602                South Gloucestershire         803     All schools
#> 603                South Gloucestershire         803         Primary
#> 604                South Gloucestershire         803       Secondary
#> 605                South Gloucestershire         803         Special
#> 606                             Plymouth         879     All schools
#> 607                             Plymouth         879         Primary
#> 608                             Plymouth         879       Secondary
#> 609                             Plymouth         879         Special
#> 610                               Torbay         880     All schools
#> 611                               Torbay         880         Primary
#> 612                               Torbay         880       Secondary
#> 613                               Torbay         880         Special
#> 614                              Swindon         866     All schools
#> 615                              Swindon         866         Primary
#> 616                              Swindon         866       Secondary
#> 617                              Swindon         866         Special
#> 618                             Cornwall         908     All schools
#> 619                             Cornwall         908         Primary
#> 620                             Cornwall         908       Secondary
#> 621                             Cornwall         908         Special
#> 622                      Isles of Scilly         420     All schools
#> 623                      Isles of Scilly         420       Secondary
#> 624                            Wiltshire         865     All schools
#> 625                            Wiltshire         865         Primary
#> 626                            Wiltshire         865       Secondary
#> 627                            Wiltshire         865         Special
#> 628  Bournemouth, Christchurch and Poole         839     All schools
#> 629  Bournemouth, Christchurch and Poole         839         Primary
#> 630  Bournemouth, Christchurch and Poole         839       Secondary
#> 631  Bournemouth, Christchurch and Poole         839         Special
#> 632                               Dorset         838     All schools
#> 633                               Dorset         838         Primary
#> 634                               Dorset         838       Secondary
#> 635                               Dorset         838         Special
#> 636                             Somerset         933     All schools
#> 637                             Somerset         933         Primary
#> 638                             Somerset         933       Secondary
#> 639                             Somerset         933         Special
#> 640                                Devon         878     All schools
#> 641                                Devon         878         Primary
#> 642                                Devon         878       Secondary
#> 643                                Devon         878         Special
#> 644                      Gloucestershire         916     All schools
#> 645                      Gloucestershire         916         Primary
#> 646                      Gloucestershire         916       Secondary
#> 647                      Gloucestershire         916         Special
#> 648                                 <NA>          NA     All schools
#> 649                                 <NA>          NA         Primary
#> 650                                 <NA>          NA       Secondary
#> 651                                 <NA>          NA         Special
#> 652                                 <NA>          NA     All schools
#> 653                                 <NA>          NA         Primary
#> 654                                 <NA>          NA       Secondary
#> 655                                 <NA>          NA         Special
#> 656                           Hartlepool         805     All schools
#> 657                           Hartlepool         805         Primary
#> 658                           Hartlepool         805       Secondary
#> 659                           Hartlepool         805         Special
#> 660                        Middlesbrough         806     All schools
#> 661                        Middlesbrough         806         Primary
#> 662                        Middlesbrough         806       Secondary
#> 663                        Middlesbrough         806         Special
#> 664                 Redcar and Cleveland         807     All schools
#> 665                 Redcar and Cleveland         807         Primary
#> 666                 Redcar and Cleveland         807       Secondary
#> 667                 Redcar and Cleveland         807         Special
#> 668                     Stockton-on-Tees         808     All schools
#> 669                     Stockton-on-Tees         808         Primary
#> 670                     Stockton-on-Tees         808       Secondary
#> 671                     Stockton-on-Tees         808         Special
#> 672                           Darlington         841     All schools
#> 673                           Darlington         841         Primary
#> 674                           Darlington         841       Secondary
#> 675                           Darlington         841         Special
#> 676                        County Durham         840     All schools
#> 677                        County Durham         840         Primary
#> 678                        County Durham         840       Secondary
#> 679                        County Durham         840         Special
#> 680                       Northumberland         929     All schools
#> 681                       Northumberland         929         Primary
#> 682                       Northumberland         929       Secondary
#> 683                       Northumberland         929         Special
#> 684                  Newcastle upon Tyne         391     All schools
#> 685                  Newcastle upon Tyne         391         Primary
#> 686                  Newcastle upon Tyne         391       Secondary
#> 687                  Newcastle upon Tyne         391         Special
#> 688                       North Tyneside         392     All schools
#> 689                       North Tyneside         392         Primary
#> 690                       North Tyneside         392       Secondary
#> 691                       North Tyneside         392         Special
#> 692                       South Tyneside         393     All schools
#> 693                       South Tyneside         393         Primary
#> 694                       South Tyneside         393       Secondary
#> 695                       South Tyneside         393         Special
#> 696                           Sunderland         394     All schools
#> 697                           Sunderland         394         Primary
#> 698                           Sunderland         394       Secondary
#> 699                           Sunderland         394         Special
#> 700                            Gateshead         390     All schools
#> 701                            Gateshead         390         Primary
#> 702                            Gateshead         390       Secondary
#> 703                            Gateshead         390         Special
#> 704                                 <NA>          NA     All schools
#> 705                                 <NA>          NA         Primary
#> 706                                 <NA>          NA       Secondary
#> 707                                 <NA>          NA         Special
#> 708                               Halton         876     All schools
#> 709                               Halton         876         Primary
#> 710                               Halton         876       Secondary
#> 711                               Halton         876         Special
#> 712                           Warrington         877     All schools
#> 713                           Warrington         877         Primary
#> 714                           Warrington         877       Secondary
#> 715                           Warrington         877         Special
#> 716                Blackburn with Darwen         889     All schools
#> 717                Blackburn with Darwen         889         Primary
#> 718                Blackburn with Darwen         889       Secondary
#> 719                Blackburn with Darwen         889         Special
#> 720                            Blackpool         890     All schools
#> 721                            Blackpool         890         Primary
#> 722                            Blackpool         890       Secondary
#> 723                            Blackpool         890         Special
#> 724                        Cheshire East         895     All schools
#> 725                        Cheshire East         895         Primary
#> 726                        Cheshire East         895       Secondary
#> 727                        Cheshire East         895         Special
#> 728            Cheshire West and Chester         896     All schools
#> 729            Cheshire West and Chester         896         Primary
#> 730            Cheshire West and Chester         896       Secondary
#> 731            Cheshire West and Chester         896         Special
#> 732                           Cumberland         942     All schools
#> 733                           Cumberland         942         Primary
#> 734                           Cumberland         942       Secondary
#> 735                           Cumberland         942         Special
#> 736              Westmorland and Furness         943     All schools
#> 737              Westmorland and Furness         943         Primary
#> 738              Westmorland and Furness         943       Secondary
#> 739              Westmorland and Furness         943         Special
#> 740                               Bolton         350     All schools
#> 741                               Bolton         350         Primary
#> 742                               Bolton         350       Secondary
#> 743                               Bolton         350         Special
#> 744                                 Bury         351     All schools
#> 745                                 Bury         351         Primary
#> 746                                 Bury         351       Secondary
#> 747                                 Bury         351         Special
#> 748                           Manchester         352     All schools
#> 749                           Manchester         352         Primary
#> 750                           Manchester         352       Secondary
#> 751                           Manchester         352         Special
#> 752                               Oldham         353     All schools
#> 753                               Oldham         353         Primary
#> 754                               Oldham         353       Secondary
#> 755                               Oldham         353         Special
#> 756                             Rochdale         354     All schools
#> 757                             Rochdale         354         Primary
#> 758                             Rochdale         354       Secondary
#> 759                             Rochdale         354         Special
#> 760                              Salford         355     All schools
#> 761                              Salford         355         Primary
#> 762                              Salford         355       Secondary
#> 763                              Salford         355         Special
#> 764                            Stockport         356     All schools
#> 765                            Stockport         356         Primary
#> 766                            Stockport         356       Secondary
#> 767                            Stockport         356         Special
#> 768                             Tameside         357     All schools
#> 769                             Tameside         357         Primary
#> 770                             Tameside         357       Secondary
#> 771                             Tameside         357         Special
#> 772                             Trafford         358     All schools
#> 773                             Trafford         358         Primary
#> 774                             Trafford         358       Secondary
#> 775                             Trafford         358         Special
#> 776                                Wigan         359     All schools
#> 777                                Wigan         359         Primary
#> 778                                Wigan         359       Secondary
#> 779                                Wigan         359         Special
#> 780                             Knowsley         340     All schools
#> 781                             Knowsley         340         Primary
#> 782                             Knowsley         340       Secondary
#> 783                             Knowsley         340         Special
#> 784                            Liverpool         341     All schools
#> 785                            Liverpool         341         Primary
#> 786                            Liverpool         341       Secondary
#> 787                            Liverpool         341         Special
#> 788                           St. Helens         342     All schools
#> 789                           St. Helens         342         Primary
#> 790                           St. Helens         342       Secondary
#> 791                           St. Helens         342         Special
#> 792                               Sefton         343     All schools
#> 793                               Sefton         343         Primary
#> 794                               Sefton         343       Secondary
#> 795                               Sefton         343         Special
#> 796                               Wirral         344     All schools
#> 797                               Wirral         344         Primary
#> 798                               Wirral         344       Secondary
#> 799                               Wirral         344         Special
#> 800                           Lancashire         888     All schools
#> 801                           Lancashire         888         Primary
#> 802                           Lancashire         888       Secondary
#> 803                           Lancashire         888         Special
#> 804                                 <NA>          NA     All schools
#> 805                                 <NA>          NA         Primary
#> 806                                 <NA>          NA       Secondary
#> 807                                 <NA>          NA         Special
#> 808          Kingston upon Hull, City of         810     All schools
#> 809          Kingston upon Hull, City of         810         Primary
#> 810          Kingston upon Hull, City of         810       Secondary
#> 811          Kingston upon Hull, City of         810         Special
#> 812             East Riding of Yorkshire         811     All schools
#> 813             East Riding of Yorkshire         811         Primary
#> 814             East Riding of Yorkshire         811       Secondary
#> 815             East Riding of Yorkshire         811         Special
#> 816              North East Lincolnshire         812     All schools
#> 817              North East Lincolnshire         812         Primary
#> 818              North East Lincolnshire         812       Secondary
#> 819              North East Lincolnshire         812         Special
#> 820                   North Lincolnshire         813     All schools
#> 821                   North Lincolnshire         813         Primary
#> 822                   North Lincolnshire         813       Secondary
#> 823                   North Lincolnshire         813         Special
#> 824                                 York         816     All schools
#> 825                                 York         816         Primary
#> 826                                 York         816       Secondary
#> 827                                 York         816         Special
#> 828                      North Yorkshire         815     All schools
#> 829                      North Yorkshire         815         Primary
#> 830                      North Yorkshire         815       Secondary
#> 831                      North Yorkshire         815         Special
#> 832                             Barnsley         370     All schools
#> 833                             Barnsley         370         Primary
#> 834                             Barnsley         370       Secondary
#> 835                             Barnsley         370         Special
#> 836                            Doncaster         371     All schools
#> 837                            Doncaster         371         Primary
#> 838                            Doncaster         371       Secondary
#> 839                            Doncaster         371         Special
#> 840                            Rotherham         372     All schools
#> 841                            Rotherham         372         Primary
#> 842                            Rotherham         372       Secondary
#> 843                            Rotherham         372         Special
#> 844                            Sheffield         373     All schools
#> 845                            Sheffield         373         Primary
#> 846                            Sheffield         373       Secondary
#> 847                            Sheffield         373         Special
#> 848                             Bradford         380     All schools
#> 849                             Bradford         380         Primary
#> 850                             Bradford         380       Secondary
#> 851                             Bradford         380         Special
#> 852                           Calderdale         381     All schools
#> 853                           Calderdale         381         Primary
#> 854                           Calderdale         381       Secondary
#> 855                           Calderdale         381         Special
#> 856                             Kirklees         382     All schools
#> 857                             Kirklees         382         Primary
#> 858                             Kirklees         382       Secondary
#> 859                             Kirklees         382         Special
#> 860                                Leeds         383     All schools
#> 861                                Leeds         383         Primary
#> 862                                Leeds         383       Secondary
#> 863                                Leeds         383         Special
#> 864                            Wakefield         384     All schools
#> 865                            Wakefield         384         Primary
#> 866                            Wakefield         384       Secondary
#> 867                            Wakefield         384         Special
#> 868                                 <NA>          NA     All schools
#> 869                                 <NA>          NA         Primary
#> 870                                 <NA>          NA       Secondary
#> 871                                 <NA>          NA         Special
#> 872                                Derby         831     All schools
#> 873                                Derby         831         Primary
#> 874                                Derby         831       Secondary
#> 875                                Derby         831         Special
#> 876                            Leicester         856     All schools
#> 877                            Leicester         856         Primary
#> 878                            Leicester         856       Secondary
#> 879                            Leicester         856         Special
#> 880                              Rutland         857     All schools
#> 881                              Rutland         857         Primary
#> 882                              Rutland         857       Secondary
#> 883                           Nottingham         892     All schools
#> 884                           Nottingham         892         Primary
#> 885                           Nottingham         892       Secondary
#> 886                           Nottingham         892         Special
#> 887               North Northamptonshire         940     All schools
#> 888               North Northamptonshire         940         Primary
#> 889               North Northamptonshire         940       Secondary
#> 890               North Northamptonshire         940         Special
#> 891                West Northamptonshire         941     All schools
#> 892                West Northamptonshire         941         Primary
#> 893                West Northamptonshire         941       Secondary
#> 894                West Northamptonshire         941         Special
#> 895                           Derbyshire         830     All schools
#> 896                           Derbyshire         830         Primary
#> 897                           Derbyshire         830       Secondary
#> 898                           Derbyshire         830         Special
#> 899                       Leicestershire         855     All schools
#> 900                       Leicestershire         855         Primary
#> 901                       Leicestershire         855       Secondary
#> 902                       Leicestershire         855         Special
#> 903                         Lincolnshire         925     All schools
#> 904                         Lincolnshire         925         Primary
#> 905                         Lincolnshire         925       Secondary
#> 906                         Lincolnshire         925         Special
#> 907                      Nottinghamshire         891     All schools
#> 908                      Nottinghamshire         891         Primary
#> 909                      Nottinghamshire         891       Secondary
#> 910                      Nottinghamshire         891         Special
#> 911                                 <NA>          NA     All schools
#> 912                                 <NA>          NA         Primary
#> 913                                 <NA>          NA       Secondary
#> 914                                 <NA>          NA         Special
#> 915             Herefordshire, County of         884     All schools
#> 916             Herefordshire, County of         884         Primary
#> 917             Herefordshire, County of         884       Secondary
#> 918             Herefordshire, County of         884         Special
#> 919                   Telford and Wrekin         894     All schools
#> 920                   Telford and Wrekin         894         Primary
#> 921                   Telford and Wrekin         894       Secondary
#> 922                   Telford and Wrekin         894         Special
#> 923                       Stoke-on-Trent         861     All schools
#> 924                       Stoke-on-Trent         861         Primary
#> 925                       Stoke-on-Trent         861       Secondary
#> 926                       Stoke-on-Trent         861         Special
#> 927                           Shropshire         893     All schools
#> 928                           Shropshire         893         Primary
#> 929                           Shropshire         893       Secondary
#> 930                           Shropshire         893         Special
#> 931                           Birmingham         330     All schools
#> 932                           Birmingham         330         Primary
#> 933                           Birmingham         330       Secondary
#> 934                           Birmingham         330         Special
#> 935                             Coventry         331     All schools
#> 936                             Coventry         331         Primary
#> 937                             Coventry         331       Secondary
#> 938                             Coventry         331         Special
#> 939                               Dudley         332     All schools
#> 940                               Dudley         332         Primary
#> 941                               Dudley         332       Secondary
#> 942                               Dudley         332         Special
#> 943                             Sandwell         333     All schools
#> 944                             Sandwell         333         Primary
#> 945                             Sandwell         333       Secondary
#> 946                             Sandwell         333         Special
#> 947                             Solihull         334     All schools
#> 948                             Solihull         334         Primary
#> 949                             Solihull         334       Secondary
#> 950                             Solihull         334         Special
#> 951                              Walsall         335     All schools
#> 952                              Walsall         335         Primary
#> 953                              Walsall         335       Secondary
#> 954                              Walsall         335         Special
#> 955                        Wolverhampton         336     All schools
#> 956                        Wolverhampton         336         Primary
#> 957                        Wolverhampton         336       Secondary
#> 958                        Wolverhampton         336         Special
#> 959                        Staffordshire         860     All schools
#> 960                        Staffordshire         860         Primary
#> 961                        Staffordshire         860       Secondary
#> 962                        Staffordshire         860         Special
#> 963                         Warwickshire         937     All schools
#> 964                         Warwickshire         937         Primary
#> 965                         Warwickshire         937       Secondary
#> 966                         Warwickshire         937         Special
#> 967                       Worcestershire         885     All schools
#> 968                       Worcestershire         885         Primary
#> 969                       Worcestershire         885       Secondary
#> 970                       Worcestershire         885         Special
#> 971                                 <NA>          NA     All schools
#> 972                                 <NA>          NA         Primary
#> 973                                 <NA>          NA       Secondary
#> 974                                 <NA>          NA         Special
#> 975                         Peterborough         874     All schools
#> 976                         Peterborough         874         Primary
#> 977                         Peterborough         874       Secondary
#> 978                         Peterborough         874         Special
#> 979                                Luton         821     All schools
#> 980                                Luton         821         Primary
#> 981                                Luton         821       Secondary
#> 982                                Luton         821         Special
#> 983                      Southend-on-Sea         882     All schools
#> 984                      Southend-on-Sea         882         Primary
#> 985                      Southend-on-Sea         882       Secondary
#> 986                      Southend-on-Sea         882         Special
#> 987                             Thurrock         883     All schools
#> 988                             Thurrock         883         Primary
#> 989                             Thurrock         883       Secondary
#> 990                             Thurrock         883         Special
#> 991                              Bedford         822     All schools
#> 992                              Bedford         822         Primary
#> 993                              Bedford         822       Secondary
#> 994                              Bedford         822         Special
#> 995                 Central Bedfordshire         823     All schools
#> 996                 Central Bedfordshire         823         Primary
#> 997                 Central Bedfordshire         823       Secondary
#> 998                 Central Bedfordshire         823         Special
#> 999                       Cambridgeshire         873     All schools
#> 1000                      Cambridgeshire         873         Primary
#> 1001                      Cambridgeshire         873       Secondary
#> 1002                      Cambridgeshire         873         Special
#> 1003                               Essex         881     All schools
#> 1004                               Essex         881         Primary
#> 1005                               Essex         881       Secondary
#> 1006                               Essex         881         Special
#> 1007                       Hertfordshire         919     All schools
#> 1008                       Hertfordshire         919         Primary
#> 1009                       Hertfordshire         919       Secondary
#> 1010                       Hertfordshire         919         Special
#> 1011                             Norfolk         926     All schools
#> 1012                             Norfolk         926         Primary
#> 1013                             Norfolk         926       Secondary
#> 1014                             Norfolk         926         Special
#> 1015                             Suffolk         935     All schools
#> 1016                             Suffolk         935         Primary
#> 1017                             Suffolk         935       Secondary
#> 1018                             Suffolk         935         Special
#> 1019                                <NA>          NA     All schools
#> 1020                                <NA>          NA         Primary
#> 1021                                <NA>          NA       Secondary
#> 1022                                <NA>          NA         Special
#> 1023                      City of London         201     All schools
#> 1024                      City of London         201         Primary
#> 1025                Barking and Dagenham         301     All schools
#> 1026                Barking and Dagenham         301         Primary
#> 1027                Barking and Dagenham         301       Secondary
#> 1028                Barking and Dagenham         301         Special
#> 1029                              Barnet         302     All schools
#> 1030                              Barnet         302         Primary
#> 1031                              Barnet         302       Secondary
#> 1032                              Barnet         302         Special
#> 1033                              Bexley         303     All schools
#> 1034                              Bexley         303         Primary
#> 1035                              Bexley         303       Secondary
#> 1036                              Bexley         303         Special
#> 1037                               Brent         304     All schools
#> 1038                               Brent         304         Primary
#> 1039                               Brent         304       Secondary
#> 1040                               Brent         304         Special
#> 1041                             Bromley         305     All schools
#> 1042                             Bromley         305         Primary
#> 1043                             Bromley         305       Secondary
#> 1044                             Bromley         305         Special
#> 1045                              Camden         202     All schools
#> 1046                              Camden         202         Primary
#> 1047                              Camden         202       Secondary
#> 1048                              Camden         202         Special
#> 1049                             Croydon         306     All schools
#> 1050                             Croydon         306         Primary
#> 1051                             Croydon         306       Secondary
#> 1052                             Croydon         306         Special
#> 1053                              Ealing         307     All schools
#> 1054                              Ealing         307         Primary
#> 1055                              Ealing         307       Secondary
#> 1056                              Ealing         307         Special
#> 1057                             Enfield         308     All schools
#> 1058                             Enfield         308         Primary
#> 1059                             Enfield         308       Secondary
#> 1060                             Enfield         308         Special
#> 1061                           Greenwich         203     All schools
#> 1062                           Greenwich         203         Primary
#> 1063                           Greenwich         203       Secondary
#> 1064                           Greenwich         203         Special
#> 1065                             Hackney         204     All schools
#> 1066                             Hackney         204         Primary
#> 1067                             Hackney         204       Secondary
#> 1068                             Hackney         204         Special
#> 1069              Hammersmith and Fulham         205     All schools
#> 1070              Hammersmith and Fulham         205         Primary
#> 1071              Hammersmith and Fulham         205       Secondary
#> 1072              Hammersmith and Fulham         205         Special
#> 1073                            Haringey         309     All schools
#> 1074                            Haringey         309         Primary
#> 1075                            Haringey         309       Secondary
#> 1076                            Haringey         309         Special
#> 1077                              Harrow         310     All schools
#> 1078                              Harrow         310         Primary
#> 1079                              Harrow         310       Secondary
#> 1080                              Harrow         310         Special
#> 1081                            Havering         311     All schools
#> 1082                            Havering         311         Primary
#> 1083                            Havering         311       Secondary
#> 1084                            Havering         311         Special
#> 1085                          Hillingdon         312     All schools
#> 1086                          Hillingdon         312         Primary
#> 1087                          Hillingdon         312       Secondary
#> 1088                          Hillingdon         312         Special
#> 1089                            Hounslow         313     All schools
#> 1090                            Hounslow         313         Primary
#> 1091                            Hounslow         313       Secondary
#> 1092                            Hounslow         313         Special
#> 1093                           Islington         206     All schools
#> 1094                           Islington         206         Primary
#> 1095                           Islington         206       Secondary
#> 1096                           Islington         206         Special
#> 1097              Kensington and Chelsea         207     All schools
#> 1098              Kensington and Chelsea         207         Primary
#> 1099              Kensington and Chelsea         207       Secondary
#> 1100              Kensington and Chelsea         207         Special
#> 1101                Kingston upon Thames         314     All schools
#> 1102                Kingston upon Thames         314         Primary
#> 1103                Kingston upon Thames         314       Secondary
#> 1104                Kingston upon Thames         314         Special
#> 1105                             Lambeth         208     All schools
#> 1106                             Lambeth         208         Primary
#> 1107                             Lambeth         208       Secondary
#> 1108                             Lambeth         208         Special
#> 1109                            Lewisham         209     All schools
#> 1110                            Lewisham         209         Primary
#> 1111                            Lewisham         209       Secondary
#> 1112                            Lewisham         209         Special
#> 1113                              Merton         315     All schools
#> 1114                              Merton         315         Primary
#> 1115                              Merton         315       Secondary
#> 1116                              Merton         315         Special
#> 1117                              Newham         316     All schools
#> 1118                              Newham         316         Primary
#> 1119                              Newham         316       Secondary
#> 1120                              Newham         316         Special
#> 1121                           Redbridge         317     All schools
#> 1122                           Redbridge         317         Primary
#> 1123                           Redbridge         317       Secondary
#> 1124                           Redbridge         317         Special
#> 1125                Richmond upon Thames         318     All schools
#> 1126                Richmond upon Thames         318         Primary
#> 1127                Richmond upon Thames         318       Secondary
#> 1128                Richmond upon Thames         318         Special
#> 1129                           Southwark         210     All schools
#> 1130                           Southwark         210         Primary
#> 1131                           Southwark         210       Secondary
#> 1132                           Southwark         210         Special
#> 1133                              Sutton         319     All schools
#> 1134                              Sutton         319         Primary
#> 1135                              Sutton         319       Secondary
#> 1136                              Sutton         319         Special
#> 1137                       Tower Hamlets         211     All schools
#> 1138                       Tower Hamlets         211         Primary
#> 1139                       Tower Hamlets         211       Secondary
#> 1140                       Tower Hamlets         211         Special
#> 1141                      Waltham Forest         320     All schools
#> 1142                      Waltham Forest         320         Primary
#> 1143                      Waltham Forest         320       Secondary
#> 1144                      Waltham Forest         320         Special
#> 1145                          Wandsworth         212     All schools
#> 1146                          Wandsworth         212         Primary
#> 1147                          Wandsworth         212       Secondary
#> 1148                          Wandsworth         212         Special
#> 1149                         Westminster         213     All schools
#> 1150                         Westminster         213         Primary
#> 1151                         Westminster         213       Secondary
#> 1152                         Westminster         213         Special
#> 1153                                <NA>          NA     All schools
#> 1154                                <NA>          NA         Primary
#> 1155                                <NA>          NA       Secondary
#> 1156                                <NA>          NA         Special
#> 1157                              Medway         887     All schools
#> 1158                              Medway         887         Primary
#> 1159                              Medway         887       Secondary
#> 1160                              Medway         887         Special
#> 1161                    Bracknell Forest         867     All schools
#> 1162                    Bracknell Forest         867         Primary
#> 1163                    Bracknell Forest         867       Secondary
#> 1164                    Bracknell Forest         867         Special
#> 1165                      West Berkshire         869     All schools
#> 1166                      West Berkshire         869         Primary
#> 1167                      West Berkshire         869       Secondary
#> 1168                      West Berkshire         869         Special
#> 1169                             Reading         870     All schools
#> 1170                             Reading         870         Primary
#> 1171                             Reading         870       Secondary
#> 1172                             Reading         870         Special
#> 1173                              Slough         871     All schools
#> 1174                              Slough         871         Primary
#> 1175                              Slough         871       Secondary
#> 1176                              Slough         871         Special
#> 1177              Windsor and Maidenhead         868     All schools
#> 1178              Windsor and Maidenhead         868         Primary
#> 1179              Windsor and Maidenhead         868       Secondary
#> 1180              Windsor and Maidenhead         868         Special
#> 1181                           Wokingham         872     All schools
#> 1182                           Wokingham         872         Primary
#> 1183                           Wokingham         872       Secondary
#> 1184                           Wokingham         872         Special
#> 1185                       Milton Keynes         826     All schools
#> 1186                       Milton Keynes         826         Primary
#> 1187                       Milton Keynes         826       Secondary
#> 1188                       Milton Keynes         826         Special
#> 1189                   Brighton and Hove         846     All schools
#> 1190                   Brighton and Hove         846         Primary
#> 1191                   Brighton and Hove         846       Secondary
#> 1192                   Brighton and Hove         846         Special
#> 1193                          Portsmouth         851     All schools
#> 1194                          Portsmouth         851         Primary
#> 1195                          Portsmouth         851       Secondary
#> 1196                          Portsmouth         851         Special
#> 1197                         Southampton         852     All schools
#> 1198                         Southampton         852         Primary
#> 1199                         Southampton         852       Secondary
#> 1200                         Southampton         852         Special
#> 1201                       Isle of Wight         921     All schools
#> 1202                       Isle of Wight         921         Primary
#> 1203                       Isle of Wight         921       Secondary
#> 1204                       Isle of Wight         921         Special
#> 1205                     Buckinghamshire         825     All schools
#> 1206                     Buckinghamshire         825         Primary
#> 1207                     Buckinghamshire         825       Secondary
#> 1208                     Buckinghamshire         825         Special
#> 1209                         East Sussex         845     All schools
#> 1210                         East Sussex         845         Primary
#> 1211                         East Sussex         845       Secondary
#> 1212                         East Sussex         845         Special
#> 1213                           Hampshire         850     All schools
#> 1214                           Hampshire         850         Primary
#> 1215                           Hampshire         850       Secondary
#> 1216                           Hampshire         850         Special
#> 1217                                Kent         886     All schools
#> 1218                                Kent         886         Primary
#> 1219                                Kent         886       Secondary
#> 1220                                Kent         886         Special
#> 1221                         Oxfordshire         931     All schools
#> 1222                         Oxfordshire         931         Primary
#> 1223                         Oxfordshire         931       Secondary
#> 1224                         Oxfordshire         931         Special
#> 1225                              Surrey         936     All schools
#> 1226                              Surrey         936         Primary
#> 1227                              Surrey         936       Secondary
#> 1228                              Surrey         936         Special
#> 1229                         West Sussex         938     All schools
#> 1230                         West Sussex         938         Primary
#> 1231                         West Sussex         938       Secondary
#> 1232                         West Sussex         938         Special
#> 1233                                <NA>          NA     All schools
#> 1234                                <NA>          NA         Primary
#> 1235                                <NA>          NA       Secondary
#> 1236                                <NA>          NA         Special
#> 1237        Bath and North East Somerset         800     All schools
#> 1238        Bath and North East Somerset         800         Primary
#> 1239        Bath and North East Somerset         800       Secondary
#> 1240        Bath and North East Somerset         800         Special
#> 1241                    Bristol, City of         801     All schools
#> 1242                    Bristol, City of         801         Primary
#> 1243                    Bristol, City of         801       Secondary
#> 1244                    Bristol, City of         801         Special
#> 1245                      North Somerset         802     All schools
#> 1246                      North Somerset         802         Primary
#> 1247                      North Somerset         802       Secondary
#> 1248                      North Somerset         802         Special
#> 1249               South Gloucestershire         803     All schools
#> 1250               South Gloucestershire         803         Primary
#> 1251               South Gloucestershire         803       Secondary
#> 1252               South Gloucestershire         803         Special
#> 1253                            Plymouth         879     All schools
#> 1254                            Plymouth         879         Primary
#> 1255                            Plymouth         879       Secondary
#> 1256                            Plymouth         879         Special
#> 1257                              Torbay         880     All schools
#> 1258                              Torbay         880         Primary
#> 1259                              Torbay         880       Secondary
#> 1260                              Torbay         880         Special
#> 1261                             Swindon         866     All schools
#> 1262                             Swindon         866         Primary
#> 1263                             Swindon         866       Secondary
#> 1264                             Swindon         866         Special
#> 1265                            Cornwall         908     All schools
#> 1266                            Cornwall         908         Primary
#> 1267                            Cornwall         908       Secondary
#> 1268                            Cornwall         908         Special
#> 1269                     Isles of Scilly         420     All schools
#> 1270                     Isles of Scilly         420       Secondary
#> 1271                           Wiltshire         865     All schools
#> 1272                           Wiltshire         865         Primary
#> 1273                           Wiltshire         865       Secondary
#> 1274                           Wiltshire         865         Special
#> 1275 Bournemouth, Christchurch and Poole         839     All schools
#> 1276 Bournemouth, Christchurch and Poole         839         Primary
#> 1277 Bournemouth, Christchurch and Poole         839       Secondary
#> 1278 Bournemouth, Christchurch and Poole         839         Special
#> 1279                              Dorset         838     All schools
#> 1280                              Dorset         838         Primary
#> 1281                              Dorset         838       Secondary
#> 1282                              Dorset         838         Special
#> 1283                            Somerset         933     All schools
#> 1284                            Somerset         933         Primary
#> 1285                            Somerset         933       Secondary
#> 1286                            Somerset         933         Special
#> 1287                               Devon         878     All schools
#> 1288                               Devon         878         Primary
#> 1289                               Devon         878       Secondary
#> 1290                               Devon         878         Special
#> 1291                     Gloucestershire         916     All schools
#> 1292                     Gloucestershire         916         Primary
#> 1293                     Gloucestershire         916       Secondary
#> 1294                     Gloucestershire         916         Special
#> 1295                                <NA>          NA     All schools
#> 1296                                <NA>          NA         Primary
#> 1297                                <NA>          NA       Secondary
#> 1298                                <NA>          NA         Special
#> 1299                                <NA>          NA     All schools
#> 1300                                <NA>          NA         Primary
#> 1301                                <NA>          NA       Secondary
#> 1302                                <NA>          NA         Special
#> 1303                          Hartlepool         805     All schools
#> 1304                          Hartlepool         805         Primary
#> 1305                          Hartlepool         805       Secondary
#> 1306                          Hartlepool         805         Special
#> 1307                       Middlesbrough         806     All schools
#> 1308                       Middlesbrough         806         Primary
#> 1309                       Middlesbrough         806       Secondary
#> 1310                       Middlesbrough         806         Special
#> 1311                Redcar and Cleveland         807     All schools
#> 1312                Redcar and Cleveland         807         Primary
#> 1313                Redcar and Cleveland         807       Secondary
#> 1314                Redcar and Cleveland         807         Special
#> 1315                    Stockton-on-Tees         808     All schools
#> 1316                    Stockton-on-Tees         808         Primary
#> 1317                    Stockton-on-Tees         808       Secondary
#> 1318                    Stockton-on-Tees         808         Special
#> 1319                          Darlington         841     All schools
#> 1320                          Darlington         841         Primary
#> 1321                          Darlington         841       Secondary
#> 1322                          Darlington         841         Special
#> 1323                       County Durham         840     All schools
#> 1324                       County Durham         840         Primary
#> 1325                       County Durham         840       Secondary
#> 1326                       County Durham         840         Special
#> 1327                      Northumberland         929     All schools
#> 1328                      Northumberland         929         Primary
#> 1329                      Northumberland         929       Secondary
#> 1330                      Northumberland         929         Special
#> 1331                 Newcastle upon Tyne         391     All schools
#> 1332                 Newcastle upon Tyne         391         Primary
#> 1333                 Newcastle upon Tyne         391       Secondary
#> 1334                 Newcastle upon Tyne         391         Special
#> 1335                      North Tyneside         392     All schools
#> 1336                      North Tyneside         392         Primary
#> 1337                      North Tyneside         392       Secondary
#> 1338                      North Tyneside         392         Special
#> 1339                      South Tyneside         393     All schools
#> 1340                      South Tyneside         393         Primary
#> 1341                      South Tyneside         393       Secondary
#> 1342                      South Tyneside         393         Special
#> 1343                          Sunderland         394     All schools
#> 1344                          Sunderland         394         Primary
#> 1345                          Sunderland         394       Secondary
#> 1346                          Sunderland         394         Special
#> 1347                           Gateshead         390     All schools
#> 1348                           Gateshead         390         Primary
#> 1349                           Gateshead         390       Secondary
#> 1350                           Gateshead         390         Special
#> 1351                                <NA>          NA     All schools
#> 1352                                <NA>          NA         Primary
#> 1353                                <NA>          NA       Secondary
#> 1354                                <NA>          NA         Special
#> 1355                              Halton         876     All schools
#> 1356                              Halton         876         Primary
#> 1357                              Halton         876       Secondary
#> 1358                              Halton         876         Special
#> 1359                          Warrington         877     All schools
#> 1360                          Warrington         877         Primary
#> 1361                          Warrington         877       Secondary
#> 1362                          Warrington         877         Special
#> 1363               Blackburn with Darwen         889     All schools
#> 1364               Blackburn with Darwen         889         Primary
#> 1365               Blackburn with Darwen         889       Secondary
#> 1366               Blackburn with Darwen         889         Special
#> 1367                           Blackpool         890     All schools
#> 1368                           Blackpool         890         Primary
#> 1369                           Blackpool         890       Secondary
#> 1370                           Blackpool         890         Special
#> 1371                       Cheshire East         895     All schools
#> 1372                       Cheshire East         895         Primary
#> 1373                       Cheshire East         895       Secondary
#> 1374                       Cheshire East         895         Special
#> 1375           Cheshire West and Chester         896     All schools
#> 1376           Cheshire West and Chester         896         Primary
#> 1377           Cheshire West and Chester         896       Secondary
#> 1378           Cheshire West and Chester         896         Special
#> 1379                          Cumberland         942     All schools
#> 1380                          Cumberland         942         Primary
#> 1381                          Cumberland         942       Secondary
#> 1382                          Cumberland         942         Special
#> 1383             Westmorland and Furness         943     All schools
#> 1384             Westmorland and Furness         943         Primary
#> 1385             Westmorland and Furness         943       Secondary
#> 1386             Westmorland and Furness         943         Special
#> 1387                              Bolton         350     All schools
#> 1388                              Bolton         350         Primary
#> 1389                              Bolton         350       Secondary
#> 1390                              Bolton         350         Special
#> 1391                                Bury         351     All schools
#> 1392                                Bury         351         Primary
#> 1393                                Bury         351       Secondary
#> 1394                                Bury         351         Special
#> 1395                          Manchester         352     All schools
#> 1396                          Manchester         352         Primary
#> 1397                          Manchester         352       Secondary
#> 1398                          Manchester         352         Special
#> 1399                              Oldham         353     All schools
#> 1400                              Oldham         353         Primary
#> 1401                              Oldham         353       Secondary
#> 1402                              Oldham         353         Special
#> 1403                            Rochdale         354     All schools
#> 1404                            Rochdale         354         Primary
#> 1405                            Rochdale         354       Secondary
#> 1406                            Rochdale         354         Special
#> 1407                             Salford         355     All schools
#> 1408                             Salford         355         Primary
#> 1409                             Salford         355       Secondary
#> 1410                             Salford         355         Special
#> 1411                           Stockport         356     All schools
#> 1412                           Stockport         356         Primary
#> 1413                           Stockport         356       Secondary
#> 1414                           Stockport         356         Special
#> 1415                            Tameside         357     All schools
#> 1416                            Tameside         357         Primary
#> 1417                            Tameside         357       Secondary
#> 1418                            Tameside         357         Special
#> 1419                            Trafford         358     All schools
#> 1420                            Trafford         358         Primary
#> 1421                            Trafford         358       Secondary
#> 1422                            Trafford         358         Special
#> 1423                               Wigan         359     All schools
#> 1424                               Wigan         359         Primary
#> 1425                               Wigan         359       Secondary
#> 1426                               Wigan         359         Special
#> 1427                            Knowsley         340     All schools
#> 1428                            Knowsley         340         Primary
#> 1429                            Knowsley         340       Secondary
#> 1430                            Knowsley         340         Special
#> 1431                           Liverpool         341     All schools
#> 1432                           Liverpool         341         Primary
#> 1433                           Liverpool         341       Secondary
#> 1434                           Liverpool         341         Special
#> 1435                          St. Helens         342     All schools
#> 1436                          St. Helens         342         Primary
#> 1437                          St. Helens         342       Secondary
#> 1438                          St. Helens         342         Special
#> 1439                              Sefton         343     All schools
#> 1440                              Sefton         343         Primary
#> 1441                              Sefton         343       Secondary
#> 1442                              Sefton         343         Special
#> 1443                              Wirral         344     All schools
#> 1444                              Wirral         344         Primary
#> 1445                              Wirral         344       Secondary
#> 1446                              Wirral         344         Special
#> 1447                          Lancashire         888     All schools
#> 1448                          Lancashire         888         Primary
#> 1449                          Lancashire         888       Secondary
#> 1450                          Lancashire         888         Special
#> 1451                                <NA>          NA     All schools
#> 1452                                <NA>          NA         Primary
#> 1453                                <NA>          NA       Secondary
#> 1454                                <NA>          NA         Special
#> 1455         Kingston upon Hull, City of         810     All schools
#> 1456         Kingston upon Hull, City of         810         Primary
#> 1457         Kingston upon Hull, City of         810       Secondary
#> 1458         Kingston upon Hull, City of         810         Special
#> 1459            East Riding of Yorkshire         811     All schools
#> 1460            East Riding of Yorkshire         811         Primary
#> 1461            East Riding of Yorkshire         811       Secondary
#> 1462            East Riding of Yorkshire         811         Special
#> 1463             North East Lincolnshire         812     All schools
#> 1464             North East Lincolnshire         812         Primary
#> 1465             North East Lincolnshire         812       Secondary
#> 1466             North East Lincolnshire         812         Special
#> 1467                  North Lincolnshire         813     All schools
#> 1468                  North Lincolnshire         813         Primary
#> 1469                  North Lincolnshire         813       Secondary
#> 1470                  North Lincolnshire         813         Special
#> 1471                                York         816     All schools
#> 1472                                York         816         Primary
#> 1473                                York         816       Secondary
#> 1474                                York         816         Special
#> 1475                     North Yorkshire         815     All schools
#> 1476                     North Yorkshire         815         Primary
#> 1477                     North Yorkshire         815       Secondary
#> 1478                     North Yorkshire         815         Special
#> 1479                            Barnsley         370     All schools
#> 1480                            Barnsley         370         Primary
#> 1481                            Barnsley         370       Secondary
#> 1482                            Barnsley         370         Special
#> 1483                           Doncaster         371     All schools
#> 1484                           Doncaster         371         Primary
#> 1485                           Doncaster         371       Secondary
#> 1486                           Doncaster         371         Special
#> 1487                           Rotherham         372     All schools
#> 1488                           Rotherham         372         Primary
#> 1489                           Rotherham         372       Secondary
#> 1490                           Rotherham         372         Special
#> 1491                           Sheffield         373     All schools
#> 1492                           Sheffield         373         Primary
#> 1493                           Sheffield         373       Secondary
#> 1494                           Sheffield         373         Special
#> 1495                            Bradford         380     All schools
#> 1496                            Bradford         380         Primary
#> 1497                            Bradford         380       Secondary
#> 1498                            Bradford         380         Special
#> 1499                          Calderdale         381     All schools
#> 1500                          Calderdale         381         Primary
#> 1501                          Calderdale         381       Secondary
#> 1502                          Calderdale         381         Special
#> 1503                            Kirklees         382     All schools
#> 1504                            Kirklees         382         Primary
#> 1505                            Kirklees         382       Secondary
#> 1506                            Kirklees         382         Special
#> 1507                               Leeds         383     All schools
#> 1508                               Leeds         383         Primary
#> 1509                               Leeds         383       Secondary
#> 1510                               Leeds         383         Special
#> 1511                           Wakefield         384     All schools
#> 1512                           Wakefield         384         Primary
#> 1513                           Wakefield         384       Secondary
#> 1514                           Wakefield         384         Special
#> 1515                                <NA>          NA     All schools
#> 1516                                <NA>          NA         Primary
#> 1517                                <NA>          NA       Secondary
#> 1518                                <NA>          NA         Special
#> 1519                               Derby         831     All schools
#> 1520                               Derby         831         Primary
#> 1521                               Derby         831       Secondary
#> 1522                               Derby         831         Special
#> 1523                           Leicester         856     All schools
#> 1524                           Leicester         856         Primary
#> 1525                           Leicester         856       Secondary
#> 1526                           Leicester         856         Special
#> 1527                             Rutland         857     All schools
#> 1528                             Rutland         857         Primary
#> 1529                             Rutland         857       Secondary
#> 1530                          Nottingham         892     All schools
#> 1531                          Nottingham         892         Primary
#> 1532                          Nottingham         892       Secondary
#> 1533                          Nottingham         892         Special
#> 1534              North Northamptonshire         940     All schools
#> 1535              North Northamptonshire         940         Primary
#> 1536              North Northamptonshire         940       Secondary
#> 1537              North Northamptonshire         940         Special
#> 1538               West Northamptonshire         941     All schools
#> 1539               West Northamptonshire         941         Primary
#> 1540               West Northamptonshire         941       Secondary
#> 1541               West Northamptonshire         941         Special
#> 1542                          Derbyshire         830     All schools
#> 1543                          Derbyshire         830         Primary
#> 1544                          Derbyshire         830       Secondary
#> 1545                          Derbyshire         830         Special
#> 1546                      Leicestershire         855     All schools
#> 1547                      Leicestershire         855         Primary
#> 1548                      Leicestershire         855       Secondary
#> 1549                      Leicestershire         855         Special
#> 1550                        Lincolnshire         925     All schools
#> 1551                        Lincolnshire         925         Primary
#> 1552                        Lincolnshire         925       Secondary
#> 1553                        Lincolnshire         925         Special
#> 1554                     Nottinghamshire         891     All schools
#> 1555                     Nottinghamshire         891         Primary
#> 1556                     Nottinghamshire         891       Secondary
#> 1557                     Nottinghamshire         891         Special
#> 1558                                <NA>          NA     All schools
#> 1559                                <NA>          NA         Primary
#> 1560                                <NA>          NA       Secondary
#> 1561                                <NA>          NA         Special
#> 1562            Herefordshire, County of         884     All schools
#> 1563            Herefordshire, County of         884         Primary
#> 1564            Herefordshire, County of         884       Secondary
#> 1565            Herefordshire, County of         884         Special
#> 1566                  Telford and Wrekin         894     All schools
#> 1567                  Telford and Wrekin         894         Primary
#> 1568                  Telford and Wrekin         894       Secondary
#> 1569                  Telford and Wrekin         894         Special
#> 1570                      Stoke-on-Trent         861     All schools
#> 1571                      Stoke-on-Trent         861         Primary
#> 1572                      Stoke-on-Trent         861       Secondary
#> 1573                      Stoke-on-Trent         861         Special
#> 1574                          Shropshire         893     All schools
#> 1575                          Shropshire         893         Primary
#> 1576                          Shropshire         893       Secondary
#> 1577                          Shropshire         893         Special
#> 1578                          Birmingham         330     All schools
#> 1579                          Birmingham         330         Primary
#> 1580                          Birmingham         330       Secondary
#> 1581                          Birmingham         330         Special
#> 1582                            Coventry         331     All schools
#> 1583                            Coventry         331         Primary
#> 1584                            Coventry         331       Secondary
#> 1585                            Coventry         331         Special
#> 1586                              Dudley         332     All schools
#> 1587                              Dudley         332         Primary
#> 1588                              Dudley         332       Secondary
#> 1589                              Dudley         332         Special
#> 1590                            Sandwell         333     All schools
#> 1591                            Sandwell         333         Primary
#> 1592                            Sandwell         333       Secondary
#> 1593                            Sandwell         333         Special
#> 1594                            Solihull         334     All schools
#> 1595                            Solihull         334         Primary
#> 1596                            Solihull         334       Secondary
#> 1597                            Solihull         334         Special
#> 1598                             Walsall         335     All schools
#> 1599                             Walsall         335         Primary
#> 1600                             Walsall         335       Secondary
#> 1601                             Walsall         335         Special
#> 1602                       Wolverhampton         336     All schools
#> 1603                       Wolverhampton         336         Primary
#> 1604                       Wolverhampton         336       Secondary
#> 1605                       Wolverhampton         336         Special
#> 1606                       Staffordshire         860     All schools
#> 1607                       Staffordshire         860         Primary
#> 1608                       Staffordshire         860       Secondary
#> 1609                       Staffordshire         860         Special
#> 1610                        Warwickshire         937     All schools
#> 1611                        Warwickshire         937         Primary
#> 1612                        Warwickshire         937       Secondary
#> 1613                        Warwickshire         937         Special
#> 1614                      Worcestershire         885     All schools
#> 1615                      Worcestershire         885         Primary
#> 1616                      Worcestershire         885       Secondary
#> 1617                      Worcestershire         885         Special
#> 1618                                <NA>          NA     All schools
#> 1619                                <NA>          NA         Primary
#> 1620                                <NA>          NA       Secondary
#> 1621                                <NA>          NA         Special
#> 1622                        Peterborough         874     All schools
#> 1623                        Peterborough         874         Primary
#> 1624                        Peterborough         874       Secondary
#> 1625                        Peterborough         874         Special
#> 1626                               Luton         821     All schools
#> 1627                               Luton         821         Primary
#> 1628                               Luton         821       Secondary
#> 1629                               Luton         821         Special
#> 1630                     Southend-on-Sea         882     All schools
#> 1631                     Southend-on-Sea         882         Primary
#> 1632                     Southend-on-Sea         882       Secondary
#> 1633                     Southend-on-Sea         882         Special
#> 1634                            Thurrock         883     All schools
#> 1635                            Thurrock         883         Primary
#> 1636                            Thurrock         883       Secondary
#> 1637                            Thurrock         883         Special
#> 1638                             Bedford         822     All schools
#> 1639                             Bedford         822         Primary
#> 1640                             Bedford         822       Secondary
#> 1641                             Bedford         822         Special
#> 1642                Central Bedfordshire         823     All schools
#> 1643                Central Bedfordshire         823         Primary
#> 1644                Central Bedfordshire         823       Secondary
#> 1645                Central Bedfordshire         823         Special
#> 1646                      Cambridgeshire         873     All schools
#> 1647                      Cambridgeshire         873         Primary
#> 1648                      Cambridgeshire         873       Secondary
#> 1649                      Cambridgeshire         873         Special
#> 1650                               Essex         881     All schools
#> 1651                               Essex         881         Primary
#> 1652                               Essex         881       Secondary
#> 1653                               Essex         881         Special
#> 1654                       Hertfordshire         919     All schools
#> 1655                       Hertfordshire         919         Primary
#> 1656                       Hertfordshire         919       Secondary
#> 1657                       Hertfordshire         919         Special
#> 1658                             Norfolk         926     All schools
#> 1659                             Norfolk         926         Primary
#> 1660                             Norfolk         926       Secondary
#> 1661                             Norfolk         926         Special
#> 1662                             Suffolk         935     All schools
#> 1663                             Suffolk         935         Primary
#> 1664                             Suffolk         935       Secondary
#> 1665                             Suffolk         935         Special
#> 1666                                <NA>          NA     All schools
#> 1667                                <NA>          NA         Primary
#> 1668                                <NA>          NA       Secondary
#> 1669                                <NA>          NA         Special
#> 1670                      City of London         201     All schools
#> 1671                      City of London         201         Primary
#> 1672                Barking and Dagenham         301     All schools
#> 1673                Barking and Dagenham         301         Primary
#> 1674                Barking and Dagenham         301       Secondary
#> 1675                Barking and Dagenham         301         Special
#> 1676                              Barnet         302     All schools
#> 1677                              Barnet         302         Primary
#> 1678                              Barnet         302       Secondary
#> 1679                              Barnet         302         Special
#> 1680                              Bexley         303     All schools
#> 1681                              Bexley         303         Primary
#> 1682                              Bexley         303       Secondary
#> 1683                              Bexley         303         Special
#> 1684                               Brent         304     All schools
#> 1685                               Brent         304         Primary
#> 1686                               Brent         304       Secondary
#> 1687                               Brent         304         Special
#> 1688                             Bromley         305     All schools
#> 1689                             Bromley         305         Primary
#> 1690                             Bromley         305       Secondary
#> 1691                             Bromley         305         Special
#> 1692                              Camden         202     All schools
#> 1693                              Camden         202         Primary
#> 1694                              Camden         202       Secondary
#> 1695                              Camden         202         Special
#> 1696                             Croydon         306     All schools
#> 1697                             Croydon         306         Primary
#> 1698                             Croydon         306       Secondary
#> 1699                             Croydon         306         Special
#> 1700                              Ealing         307     All schools
#> 1701                              Ealing         307         Primary
#> 1702                              Ealing         307       Secondary
#> 1703                              Ealing         307         Special
#> 1704                             Enfield         308     All schools
#> 1705                             Enfield         308         Primary
#> 1706                             Enfield         308       Secondary
#> 1707                             Enfield         308         Special
#> 1708                           Greenwich         203     All schools
#> 1709                           Greenwich         203         Primary
#> 1710                           Greenwich         203       Secondary
#> 1711                           Greenwich         203         Special
#> 1712                             Hackney         204     All schools
#> 1713                             Hackney         204         Primary
#> 1714                             Hackney         204       Secondary
#> 1715                             Hackney         204         Special
#> 1716              Hammersmith and Fulham         205     All schools
#> 1717              Hammersmith and Fulham         205         Primary
#> 1718              Hammersmith and Fulham         205       Secondary
#> 1719              Hammersmith and Fulham         205         Special
#> 1720                            Haringey         309     All schools
#> 1721                            Haringey         309         Primary
#> 1722                            Haringey         309       Secondary
#> 1723                            Haringey         309         Special
#> 1724                              Harrow         310     All schools
#> 1725                              Harrow         310         Primary
#> 1726                              Harrow         310       Secondary
#> 1727                              Harrow         310         Special
#> 1728                            Havering         311     All schools
#> 1729                            Havering         311         Primary
#> 1730                            Havering         311       Secondary
#> 1731                            Havering         311         Special
#> 1732                          Hillingdon         312     All schools
#> 1733                          Hillingdon         312         Primary
#> 1734                          Hillingdon         312       Secondary
#> 1735                          Hillingdon         312         Special
#> 1736                            Hounslow         313     All schools
#> 1737                            Hounslow         313         Primary
#> 1738                            Hounslow         313       Secondary
#> 1739                            Hounslow         313         Special
#> 1740                           Islington         206     All schools
#> 1741                           Islington         206         Primary
#> 1742                           Islington         206       Secondary
#> 1743                           Islington         206         Special
#> 1744              Kensington and Chelsea         207     All schools
#> 1745              Kensington and Chelsea         207         Primary
#> 1746              Kensington and Chelsea         207       Secondary
#> 1747              Kensington and Chelsea         207         Special
#> 1748                Kingston upon Thames         314     All schools
#> 1749                Kingston upon Thames         314         Primary
#> 1750                Kingston upon Thames         314       Secondary
#> 1751                Kingston upon Thames         314         Special
#> 1752                             Lambeth         208     All schools
#> 1753                             Lambeth         208         Primary
#> 1754                             Lambeth         208       Secondary
#> 1755                             Lambeth         208         Special
#> 1756                            Lewisham         209     All schools
#> 1757                            Lewisham         209         Primary
#> 1758                            Lewisham         209       Secondary
#> 1759                            Lewisham         209         Special
#> 1760                              Merton         315     All schools
#> 1761                              Merton         315         Primary
#> 1762                              Merton         315       Secondary
#> 1763                              Merton         315         Special
#> 1764                              Newham         316     All schools
#> 1765                              Newham         316         Primary
#> 1766                              Newham         316       Secondary
#> 1767                              Newham         316         Special
#> 1768                           Redbridge         317     All schools
#> 1769                           Redbridge         317         Primary
#> 1770                           Redbridge         317       Secondary
#> 1771                           Redbridge         317         Special
#> 1772                Richmond upon Thames         318     All schools
#> 1773                Richmond upon Thames         318         Primary
#> 1774                Richmond upon Thames         318       Secondary
#> 1775                Richmond upon Thames         318         Special
#> 1776                           Southwark         210     All schools
#> 1777                           Southwark         210         Primary
#> 1778                           Southwark         210       Secondary
#> 1779                           Southwark         210         Special
#> 1780                              Sutton         319     All schools
#> 1781                              Sutton         319         Primary
#> 1782                              Sutton         319       Secondary
#> 1783                              Sutton         319         Special
#> 1784                       Tower Hamlets         211     All schools
#> 1785                       Tower Hamlets         211         Primary
#> 1786                       Tower Hamlets         211       Secondary
#> 1787                       Tower Hamlets         211         Special
#> 1788                      Waltham Forest         320     All schools
#> 1789                      Waltham Forest         320         Primary
#> 1790                      Waltham Forest         320       Secondary
#> 1791                      Waltham Forest         320         Special
#> 1792                          Wandsworth         212     All schools
#> 1793                          Wandsworth         212         Primary
#> 1794                          Wandsworth         212       Secondary
#> 1795                          Wandsworth         212         Special
#> 1796                         Westminster         213     All schools
#> 1797                         Westminster         213         Primary
#> 1798                         Westminster         213       Secondary
#> 1799                         Westminster         213         Special
#> 1800                                <NA>          NA     All schools
#> 1801                                <NA>          NA         Primary
#> 1802                                <NA>          NA       Secondary
#> 1803                                <NA>          NA         Special
#> 1804                              Medway         887     All schools
#> 1805                              Medway         887         Primary
#> 1806                              Medway         887       Secondary
#> 1807                              Medway         887         Special
#> 1808                    Bracknell Forest         867     All schools
#> 1809                    Bracknell Forest         867         Primary
#> 1810                    Bracknell Forest         867       Secondary
#> 1811                    Bracknell Forest         867         Special
#> 1812                      West Berkshire         869     All schools
#> 1813                      West Berkshire         869         Primary
#> 1814                      West Berkshire         869       Secondary
#> 1815                      West Berkshire         869         Special
#> 1816                             Reading         870     All schools
#> 1817                             Reading         870         Primary
#> 1818                             Reading         870       Secondary
#> 1819                             Reading         870         Special
#> 1820                              Slough         871     All schools
#> 1821                              Slough         871         Primary
#> 1822                              Slough         871       Secondary
#> 1823                              Slough         871         Special
#> 1824              Windsor and Maidenhead         868     All schools
#> 1825              Windsor and Maidenhead         868         Primary
#> 1826              Windsor and Maidenhead         868       Secondary
#> 1827              Windsor and Maidenhead         868         Special
#> 1828                           Wokingham         872     All schools
#> 1829                           Wokingham         872         Primary
#> 1830                           Wokingham         872       Secondary
#> 1831                           Wokingham         872         Special
#> 1832                       Milton Keynes         826     All schools
#> 1833                       Milton Keynes         826         Primary
#> 1834                       Milton Keynes         826       Secondary
#> 1835                       Milton Keynes         826         Special
#> 1836                   Brighton and Hove         846     All schools
#> 1837                   Brighton and Hove         846         Primary
#> 1838                   Brighton and Hove         846       Secondary
#> 1839                   Brighton and Hove         846         Special
#> 1840                          Portsmouth         851     All schools
#> 1841                          Portsmouth         851         Primary
#> 1842                          Portsmouth         851       Secondary
#> 1843                          Portsmouth         851         Special
#> 1844                         Southampton         852     All schools
#> 1845                         Southampton         852         Primary
#> 1846                         Southampton         852       Secondary
#> 1847                         Southampton         852         Special
#> 1848                       Isle of Wight         921     All schools
#> 1849                       Isle of Wight         921         Primary
#> 1850                       Isle of Wight         921       Secondary
#> 1851                       Isle of Wight         921         Special
#> 1852                     Buckinghamshire         825     All schools
#> 1853                     Buckinghamshire         825         Primary
#> 1854                     Buckinghamshire         825       Secondary
#> 1855                     Buckinghamshire         825         Special
#> 1856                         East Sussex         845     All schools
#> 1857                         East Sussex         845         Primary
#> 1858                         East Sussex         845       Secondary
#> 1859                         East Sussex         845         Special
#> 1860                           Hampshire         850     All schools
#> 1861                           Hampshire         850         Primary
#> 1862                           Hampshire         850       Secondary
#> 1863                           Hampshire         850         Special
#> 1864                                Kent         886     All schools
#> 1865                                Kent         886         Primary
#> 1866                                Kent         886       Secondary
#> 1867                                Kent         886         Special
#> 1868                         Oxfordshire         931     All schools
#> 1869                         Oxfordshire         931         Primary
#> 1870                         Oxfordshire         931       Secondary
#> 1871                         Oxfordshire         931         Special
#> 1872                              Surrey         936     All schools
#> 1873                              Surrey         936         Primary
#> 1874                              Surrey         936       Secondary
#> 1875                              Surrey         936         Special
#> 1876                         West Sussex         938     All schools
#> 1877                         West Sussex         938         Primary
#> 1878                         West Sussex         938       Secondary
#> 1879                         West Sussex         938         Special
#> 1880                                <NA>          NA     All schools
#> 1881                                <NA>          NA         Primary
#> 1882                                <NA>          NA       Secondary
#> 1883                                <NA>          NA         Special
#> 1884        Bath and North East Somerset         800     All schools
#> 1885        Bath and North East Somerset         800         Primary
#> 1886        Bath and North East Somerset         800       Secondary
#> 1887        Bath and North East Somerset         800         Special
#> 1888                    Bristol, City of         801     All schools
#> 1889                    Bristol, City of         801         Primary
#> 1890                    Bristol, City of         801       Secondary
#> 1891                    Bristol, City of         801         Special
#> 1892                      North Somerset         802     All schools
#> 1893                      North Somerset         802         Primary
#> 1894                      North Somerset         802       Secondary
#> 1895                      North Somerset         802         Special
#> 1896               South Gloucestershire         803     All schools
#> 1897               South Gloucestershire         803         Primary
#> 1898               South Gloucestershire         803       Secondary
#> 1899               South Gloucestershire         803         Special
#> 1900                            Plymouth         879     All schools
#> 1901                            Plymouth         879         Primary
#> 1902                            Plymouth         879       Secondary
#> 1903                            Plymouth         879         Special
#> 1904                              Torbay         880     All schools
#> 1905                              Torbay         880         Primary
#> 1906                              Torbay         880       Secondary
#> 1907                              Torbay         880         Special
#> 1908                             Swindon         866     All schools
#> 1909                             Swindon         866         Primary
#> 1910                             Swindon         866       Secondary
#> 1911                             Swindon         866         Special
#> 1912                            Cornwall         908     All schools
#> 1913                            Cornwall         908         Primary
#> 1914                            Cornwall         908       Secondary
#> 1915                            Cornwall         908         Special
#> 1916                     Isles of Scilly         420     All schools
#> 1917                     Isles of Scilly         420       Secondary
#> 1918                           Wiltshire         865     All schools
#> 1919                           Wiltshire         865         Primary
#> 1920                           Wiltshire         865       Secondary
#> 1921                           Wiltshire         865         Special
#> 1922 Bournemouth, Christchurch and Poole         839     All schools
#> 1923 Bournemouth, Christchurch and Poole         839         Primary
#> 1924 Bournemouth, Christchurch and Poole         839       Secondary
#> 1925 Bournemouth, Christchurch and Poole         839         Special
#> 1926                              Dorset         838     All schools
#> 1927                              Dorset         838         Primary
#> 1928                              Dorset         838       Secondary
#> 1929                              Dorset         838         Special
#> 1930                            Somerset         933     All schools
#> 1931                            Somerset         933         Primary
#> 1932                            Somerset         933       Secondary
#> 1933                            Somerset         933         Special
#> 1934                               Devon         878     All schools
#> 1935                               Devon         878         Primary
#> 1936                               Devon         878       Secondary
#> 1937                               Devon         878         Special
#> 1938                     Gloucestershire         916     All schools
#> 1939                     Gloucestershire         916         Primary
#> 1940                     Gloucestershire         916       Secondary
#> 1941                     Gloucestershire         916         Special
#> 1942                                <NA>          NA     All schools
#> 1943                                <NA>          NA         Primary
#> 1944                                <NA>          NA       Secondary
#> 1945                                <NA>          NA         Special
#> 1946                                <NA>          NA     All schools
#> 1947                                <NA>          NA         Primary
#> 1948                                <NA>          NA       Secondary
#> 1949                                <NA>          NA         Special
#> 1950                          Hartlepool         805     All schools
#> 1951                          Hartlepool         805         Primary
#> 1952                          Hartlepool         805       Secondary
#> 1953                          Hartlepool         805         Special
#> 1954                       Middlesbrough         806     All schools
#> 1955                       Middlesbrough         806         Primary
#> 1956                       Middlesbrough         806       Secondary
#> 1957                       Middlesbrough         806         Special
#> 1958                Redcar and Cleveland         807     All schools
#> 1959                Redcar and Cleveland         807         Primary
#> 1960                Redcar and Cleveland         807       Secondary
#> 1961                Redcar and Cleveland         807         Special
#> 1962                    Stockton-on-Tees         808     All schools
#> 1963                    Stockton-on-Tees         808         Primary
#> 1964                    Stockton-on-Tees         808       Secondary
#> 1965                    Stockton-on-Tees         808         Special
#> 1966                          Darlington         841     All schools
#> 1967                          Darlington         841         Primary
#> 1968                          Darlington         841       Secondary
#> 1969                          Darlington         841         Special
#> 1970                       County Durham         840     All schools
#> 1971                       County Durham         840         Primary
#> 1972                       County Durham         840       Secondary
#> 1973                       County Durham         840         Special
#> 1974                      Northumberland         929     All schools
#> 1975                      Northumberland         929         Primary
#> 1976                      Northumberland         929       Secondary
#> 1977                      Northumberland         929         Special
#> 1978                 Newcastle upon Tyne         391     All schools
#> 1979                 Newcastle upon Tyne         391         Primary
#> 1980                 Newcastle upon Tyne         391       Secondary
#> 1981                 Newcastle upon Tyne         391         Special
#> 1982                      North Tyneside         392     All schools
#> 1983                      North Tyneside         392         Primary
#> 1984                      North Tyneside         392       Secondary
#> 1985                      North Tyneside         392         Special
#> 1986                      South Tyneside         393     All schools
#> 1987                      South Tyneside         393         Primary
#> 1988                      South Tyneside         393       Secondary
#> 1989                      South Tyneside         393         Special
#> 1990                          Sunderland         394     All schools
#> 1991                          Sunderland         394         Primary
#> 1992                          Sunderland         394       Secondary
#> 1993                          Sunderland         394         Special
#> 1994                           Gateshead         390     All schools
#> 1995                           Gateshead         390         Primary
#> 1996                           Gateshead         390       Secondary
#> 1997                           Gateshead         390         Special
#> 1998                                <NA>          NA     All schools
#> 1999                                <NA>          NA         Primary
#> 2000                                <NA>          NA       Secondary
#> 2001                                <NA>          NA         Special
#> 2002                              Halton         876     All schools
#> 2003                              Halton         876         Primary
#> 2004                              Halton         876       Secondary
#> 2005                              Halton         876         Special
#> 2006                          Warrington         877     All schools
#> 2007                          Warrington         877         Primary
#> 2008                          Warrington         877       Secondary
#> 2009                          Warrington         877         Special
#> 2010               Blackburn with Darwen         889     All schools
#> 2011               Blackburn with Darwen         889         Primary
#> 2012               Blackburn with Darwen         889       Secondary
#> 2013               Blackburn with Darwen         889         Special
#> 2014                           Blackpool         890     All schools
#> 2015                           Blackpool         890         Primary
#> 2016                           Blackpool         890       Secondary
#> 2017                           Blackpool         890         Special
#> 2018                       Cheshire East         895     All schools
#> 2019                       Cheshire East         895         Primary
#> 2020                       Cheshire East         895       Secondary
#> 2021                       Cheshire East         895         Special
#> 2022           Cheshire West and Chester         896     All schools
#> 2023           Cheshire West and Chester         896         Primary
#> 2024           Cheshire West and Chester         896       Secondary
#> 2025           Cheshire West and Chester         896         Special
#> 2026                          Cumberland         942     All schools
#> 2027                          Cumberland         942         Primary
#> 2028                          Cumberland         942       Secondary
#> 2029                          Cumberland         942         Special
#> 2030             Westmorland and Furness         943     All schools
#> 2031             Westmorland and Furness         943         Primary
#> 2032             Westmorland and Furness         943       Secondary
#> 2033             Westmorland and Furness         943         Special
#> 2034                              Bolton         350     All schools
#> 2035                              Bolton         350         Primary
#> 2036                              Bolton         350       Secondary
#> 2037                              Bolton         350         Special
#> 2038                                Bury         351     All schools
#> 2039                                Bury         351         Primary
#> 2040                                Bury         351       Secondary
#> 2041                                Bury         351         Special
#> 2042                          Manchester         352     All schools
#> 2043                          Manchester         352         Primary
#> 2044                          Manchester         352       Secondary
#> 2045                          Manchester         352         Special
#> 2046                              Oldham         353     All schools
#> 2047                              Oldham         353         Primary
#> 2048                              Oldham         353       Secondary
#> 2049                              Oldham         353         Special
#> 2050                            Rochdale         354     All schools
#> 2051                            Rochdale         354         Primary
#> 2052                            Rochdale         354       Secondary
#> 2053                            Rochdale         354         Special
#> 2054                             Salford         355     All schools
#> 2055                             Salford         355         Primary
#> 2056                             Salford         355       Secondary
#> 2057                             Salford         355         Special
#> 2058                           Stockport         356     All schools
#> 2059                           Stockport         356         Primary
#> 2060                           Stockport         356       Secondary
#> 2061                           Stockport         356         Special
#> 2062                            Tameside         357     All schools
#> 2063                            Tameside         357         Primary
#> 2064                            Tameside         357       Secondary
#> 2065                            Tameside         357         Special
#> 2066                            Trafford         358     All schools
#> 2067                            Trafford         358         Primary
#> 2068                            Trafford         358       Secondary
#> 2069                            Trafford         358         Special
#> 2070                               Wigan         359     All schools
#> 2071                               Wigan         359         Primary
#> 2072                               Wigan         359       Secondary
#> 2073                               Wigan         359         Special
#> 2074                            Knowsley         340     All schools
#> 2075                            Knowsley         340         Primary
#> 2076                            Knowsley         340       Secondary
#> 2077                            Knowsley         340         Special
#> 2078                           Liverpool         341     All schools
#> 2079                           Liverpool         341         Primary
#> 2080                           Liverpool         341       Secondary
#> 2081                           Liverpool         341         Special
#> 2082                          St. Helens         342     All schools
#> 2083                          St. Helens         342         Primary
#> 2084                          St. Helens         342       Secondary
#> 2085                          St. Helens         342         Special
#> 2086                              Sefton         343     All schools
#> 2087                              Sefton         343         Primary
#> 2088                              Sefton         343       Secondary
#> 2089                              Sefton         343         Special
#> 2090                              Wirral         344     All schools
#> 2091                              Wirral         344         Primary
#> 2092                              Wirral         344       Secondary
#> 2093                              Wirral         344         Special
#> 2094                          Lancashire         888     All schools
#> 2095                          Lancashire         888         Primary
#> 2096                          Lancashire         888       Secondary
#> 2097                          Lancashire         888         Special
#> 2098                                <NA>          NA     All schools
#> 2099                                <NA>          NA         Primary
#> 2100                                <NA>          NA       Secondary
#> 2101                                <NA>          NA         Special
#> 2102         Kingston upon Hull, City of         810     All schools
#> 2103         Kingston upon Hull, City of         810         Primary
#> 2104         Kingston upon Hull, City of         810       Secondary
#> 2105         Kingston upon Hull, City of         810         Special
#> 2106            East Riding of Yorkshire         811     All schools
#> 2107            East Riding of Yorkshire         811         Primary
#> 2108            East Riding of Yorkshire         811       Secondary
#> 2109            East Riding of Yorkshire         811         Special
#> 2110             North East Lincolnshire         812     All schools
#> 2111             North East Lincolnshire         812         Primary
#> 2112             North East Lincolnshire         812       Secondary
#> 2113             North East Lincolnshire         812         Special
#> 2114                  North Lincolnshire         813     All schools
#> 2115                  North Lincolnshire         813         Primary
#> 2116                  North Lincolnshire         813       Secondary
#> 2117                  North Lincolnshire         813         Special
#> 2118                                York         816     All schools
#> 2119                                York         816         Primary
#> 2120                                York         816       Secondary
#> 2121                                York         816         Special
#> 2122                     North Yorkshire         815     All schools
#> 2123                     North Yorkshire         815         Primary
#> 2124                     North Yorkshire         815       Secondary
#> 2125                     North Yorkshire         815         Special
#> 2126                            Barnsley         370     All schools
#> 2127                            Barnsley         370         Primary
#> 2128                            Barnsley         370       Secondary
#> 2129                            Barnsley         370         Special
#> 2130                           Doncaster         371     All schools
#> 2131                           Doncaster         371         Primary
#> 2132                           Doncaster         371       Secondary
#> 2133                           Doncaster         371         Special
#> 2134                           Rotherham         372     All schools
#> 2135                           Rotherham         372         Primary
#> 2136                           Rotherham         372       Secondary
#> 2137                           Rotherham         372         Special
#> 2138                           Sheffield         373     All schools
#> 2139                           Sheffield         373         Primary
#> 2140                           Sheffield         373       Secondary
#> 2141                           Sheffield         373         Special
#> 2142                            Bradford         380     All schools
#> 2143                            Bradford         380         Primary
#> 2144                            Bradford         380       Secondary
#> 2145                            Bradford         380         Special
#> 2146                          Calderdale         381     All schools
#> 2147                          Calderdale         381         Primary
#> 2148                          Calderdale         381       Secondary
#> 2149                          Calderdale         381         Special
#> 2150                            Kirklees         382     All schools
#> 2151                            Kirklees         382         Primary
#> 2152                            Kirklees         382       Secondary
#> 2153                            Kirklees         382         Special
#> 2154                               Leeds         383     All schools
#> 2155                               Leeds         383         Primary
#> 2156                               Leeds         383       Secondary
#> 2157                               Leeds         383         Special
#> 2158                           Wakefield         384     All schools
#> 2159                           Wakefield         384         Primary
#> 2160                           Wakefield         384       Secondary
#> 2161                           Wakefield         384         Special
#> 2162                                <NA>          NA     All schools
#> 2163                                <NA>          NA         Primary
#> 2164                                <NA>          NA       Secondary
#> 2165                                <NA>          NA         Special
#> 2166                               Derby         831     All schools
#> 2167                               Derby         831         Primary
#> 2168                               Derby         831       Secondary
#> 2169                               Derby         831         Special
#> 2170                           Leicester         856     All schools
#> 2171                           Leicester         856         Primary
#> 2172                           Leicester         856       Secondary
#> 2173                           Leicester         856         Special
#> 2174                             Rutland         857     All schools
#> 2175                             Rutland         857         Primary
#> 2176                             Rutland         857       Secondary
#> 2177                          Nottingham         892     All schools
#> 2178                          Nottingham         892         Primary
#> 2179                          Nottingham         892       Secondary
#> 2180                          Nottingham         892         Special
#> 2181              North Northamptonshire         940     All schools
#> 2182              North Northamptonshire         940         Primary
#> 2183              North Northamptonshire         940       Secondary
#> 2184              North Northamptonshire         940         Special
#> 2185               West Northamptonshire         941     All schools
#> 2186               West Northamptonshire         941         Primary
#> 2187               West Northamptonshire         941       Secondary
#> 2188               West Northamptonshire         941         Special
#> 2189                          Derbyshire         830     All schools
#> 2190                          Derbyshire         830         Primary
#> 2191                          Derbyshire         830       Secondary
#> 2192                          Derbyshire         830         Special
#> 2193                      Leicestershire         855     All schools
#> 2194                      Leicestershire         855         Primary
#> 2195                      Leicestershire         855       Secondary
#> 2196                      Leicestershire         855         Special
#> 2197                        Lincolnshire         925     All schools
#> 2198                        Lincolnshire         925         Primary
#> 2199                        Lincolnshire         925       Secondary
#> 2200                        Lincolnshire         925         Special
#> 2201                     Nottinghamshire         891     All schools
#> 2202                     Nottinghamshire         891         Primary
#> 2203                     Nottinghamshire         891       Secondary
#> 2204                     Nottinghamshire         891         Special
#> 2205                                <NA>          NA     All schools
#> 2206                                <NA>          NA         Primary
#> 2207                                <NA>          NA       Secondary
#> 2208                                <NA>          NA         Special
#> 2209            Herefordshire, County of         884     All schools
#> 2210            Herefordshire, County of         884         Primary
#> 2211            Herefordshire, County of         884       Secondary
#> 2212            Herefordshire, County of         884         Special
#> 2213                  Telford and Wrekin         894     All schools
#> 2214                  Telford and Wrekin         894         Primary
#> 2215                  Telford and Wrekin         894       Secondary
#> 2216                  Telford and Wrekin         894         Special
#> 2217                      Stoke-on-Trent         861     All schools
#> 2218                      Stoke-on-Trent         861         Primary
#> 2219                      Stoke-on-Trent         861       Secondary
#> 2220                      Stoke-on-Trent         861         Special
#> 2221                          Shropshire         893     All schools
#> 2222                          Shropshire         893         Primary
#> 2223                          Shropshire         893       Secondary
#> 2224                          Shropshire         893         Special
#> 2225                          Birmingham         330     All schools
#> 2226                          Birmingham         330         Primary
#> 2227                          Birmingham         330       Secondary
#> 2228                          Birmingham         330         Special
#> 2229                            Coventry         331     All schools
#> 2230                            Coventry         331         Primary
#> 2231                            Coventry         331       Secondary
#> 2232                            Coventry         331         Special
#> 2233                              Dudley         332     All schools
#> 2234                              Dudley         332         Primary
#> 2235                              Dudley         332       Secondary
#> 2236                              Dudley         332         Special
#> 2237                            Sandwell         333     All schools
#> 2238                            Sandwell         333         Primary
#> 2239                            Sandwell         333       Secondary
#> 2240                            Sandwell         333         Special
#> 2241                            Solihull         334     All schools
#> 2242                            Solihull         334         Primary
#> 2243                            Solihull         334       Secondary
#> 2244                            Solihull         334         Special
#> 2245                             Walsall         335     All schools
#> 2246                             Walsall         335         Primary
#> 2247                             Walsall         335       Secondary
#> 2248                             Walsall         335         Special
#> 2249                       Wolverhampton         336     All schools
#> 2250                       Wolverhampton         336         Primary
#> 2251                       Wolverhampton         336       Secondary
#> 2252                       Wolverhampton         336         Special
#> 2253                       Staffordshire         860     All schools
#> 2254                       Staffordshire         860         Primary
#> 2255                       Staffordshire         860       Secondary
#> 2256                       Staffordshire         860         Special
#> 2257                        Warwickshire         937     All schools
#> 2258                        Warwickshire         937         Primary
#> 2259                        Warwickshire         937       Secondary
#> 2260                        Warwickshire         937         Special
#> 2261                      Worcestershire         885     All schools
#> 2262                      Worcestershire         885         Primary
#> 2263                      Worcestershire         885       Secondary
#> 2264                      Worcestershire         885         Special
#> 2265                                <NA>          NA     All schools
#> 2266                                <NA>          NA         Primary
#> 2267                                <NA>          NA       Secondary
#> 2268                                <NA>          NA         Special
#> 2269                        Peterborough         874     All schools
#> 2270                        Peterborough         874         Primary
#> 2271                        Peterborough         874       Secondary
#> 2272                        Peterborough         874         Special
#> 2273                               Luton         821     All schools
#> 2274                               Luton         821         Primary
#> 2275                               Luton         821       Secondary
#> 2276                               Luton         821         Special
#> 2277                     Southend-on-Sea         882     All schools
#> 2278                     Southend-on-Sea         882         Primary
#> 2279                     Southend-on-Sea         882       Secondary
#> 2280                     Southend-on-Sea         882         Special
#> 2281                            Thurrock         883     All schools
#> 2282                            Thurrock         883         Primary
#> 2283                            Thurrock         883       Secondary
#> 2284                            Thurrock         883         Special
#> 2285                             Bedford         822     All schools
#> 2286                             Bedford         822         Primary
#> 2287                             Bedford         822       Secondary
#> 2288                             Bedford         822         Special
#> 2289                Central Bedfordshire         823     All schools
#> 2290                Central Bedfordshire         823         Primary
#> 2291                Central Bedfordshire         823       Secondary
#> 2292                Central Bedfordshire         823         Special
#> 2293                      Cambridgeshire         873     All schools
#> 2294                      Cambridgeshire         873         Primary
#> 2295                      Cambridgeshire         873       Secondary
#> 2296                      Cambridgeshire         873         Special
#> 2297                               Essex         881     All schools
#> 2298                               Essex         881         Primary
#> 2299                               Essex         881       Secondary
#> 2300                               Essex         881         Special
#> 2301                       Hertfordshire         919     All schools
#> 2302                       Hertfordshire         919         Primary
#> 2303                       Hertfordshire         919       Secondary
#> 2304                       Hertfordshire         919         Special
#> 2305                             Norfolk         926     All schools
#> 2306                             Norfolk         926         Primary
#> 2307                             Norfolk         926       Secondary
#> 2308                             Norfolk         926         Special
#> 2309                             Suffolk         935     All schools
#> 2310                             Suffolk         935         Primary
#> 2311                             Suffolk         935       Secondary
#> 2312                             Suffolk         935         Special
#> 2313                                <NA>          NA     All schools
#> 2314                                <NA>          NA         Primary
#> 2315                                <NA>          NA       Secondary
#> 2316                                <NA>          NA         Special
#> 2317                      City of London         201     All schools
#> 2318                      City of London         201         Primary
#> 2319                Barking and Dagenham         301     All schools
#> 2320                Barking and Dagenham         301         Primary
#> 2321                Barking and Dagenham         301       Secondary
#> 2322                Barking and Dagenham         301         Special
#> 2323                              Barnet         302     All schools
#> 2324                              Barnet         302         Primary
#> 2325                              Barnet         302       Secondary
#> 2326                              Barnet         302         Special
#> 2327                              Bexley         303     All schools
#> 2328                              Bexley         303         Primary
#> 2329                              Bexley         303       Secondary
#> 2330                              Bexley         303         Special
#> 2331                               Brent         304     All schools
#> 2332                               Brent         304         Primary
#> 2333                               Brent         304       Secondary
#> 2334                               Brent         304         Special
#> 2335                             Bromley         305     All schools
#> 2336                             Bromley         305         Primary
#> 2337                             Bromley         305       Secondary
#> 2338                             Bromley         305         Special
#> 2339                              Camden         202     All schools
#> 2340                              Camden         202         Primary
#> 2341                              Camden         202       Secondary
#> 2342                              Camden         202         Special
#> 2343                             Croydon         306     All schools
#> 2344                             Croydon         306         Primary
#> 2345                             Croydon         306       Secondary
#> 2346                             Croydon         306         Special
#> 2347                              Ealing         307     All schools
#> 2348                              Ealing         307         Primary
#> 2349                              Ealing         307       Secondary
#> 2350                              Ealing         307         Special
#> 2351                             Enfield         308     All schools
#> 2352                             Enfield         308         Primary
#> 2353                             Enfield         308       Secondary
#> 2354                             Enfield         308         Special
#> 2355                           Greenwich         203     All schools
#> 2356                           Greenwich         203         Primary
#> 2357                           Greenwich         203       Secondary
#> 2358                           Greenwich         203         Special
#> 2359                             Hackney         204     All schools
#> 2360                             Hackney         204         Primary
#> 2361                             Hackney         204       Secondary
#> 2362                             Hackney         204         Special
#> 2363              Hammersmith and Fulham         205     All schools
#> 2364              Hammersmith and Fulham         205         Primary
#> 2365              Hammersmith and Fulham         205       Secondary
#> 2366              Hammersmith and Fulham         205         Special
#> 2367                            Haringey         309     All schools
#> 2368                            Haringey         309         Primary
#> 2369                            Haringey         309       Secondary
#> 2370                            Haringey         309         Special
#> 2371                              Harrow         310     All schools
#> 2372                              Harrow         310         Primary
#> 2373                              Harrow         310       Secondary
#> 2374                              Harrow         310         Special
#> 2375                            Havering         311     All schools
#> 2376                            Havering         311         Primary
#> 2377                            Havering         311       Secondary
#> 2378                            Havering         311         Special
#> 2379                          Hillingdon         312     All schools
#> 2380                          Hillingdon         312         Primary
#> 2381                          Hillingdon         312       Secondary
#> 2382                          Hillingdon         312         Special
#> 2383                            Hounslow         313     All schools
#> 2384                            Hounslow         313         Primary
#> 2385                            Hounslow         313       Secondary
#> 2386                            Hounslow         313         Special
#> 2387                           Islington         206     All schools
#> 2388                           Islington         206         Primary
#> 2389                           Islington         206       Secondary
#> 2390                           Islington         206         Special
#> 2391              Kensington and Chelsea         207     All schools
#> 2392              Kensington and Chelsea         207         Primary
#> 2393              Kensington and Chelsea         207       Secondary
#> 2394              Kensington and Chelsea         207         Special
#> 2395                Kingston upon Thames         314     All schools
#> 2396                Kingston upon Thames         314         Primary
#> 2397                Kingston upon Thames         314       Secondary
#> 2398                Kingston upon Thames         314         Special
#> 2399                             Lambeth         208     All schools
#> 2400                             Lambeth         208         Primary
#> 2401                             Lambeth         208       Secondary
#> 2402                             Lambeth         208         Special
#> 2403                            Lewisham         209     All schools
#> 2404                            Lewisham         209         Primary
#> 2405                            Lewisham         209       Secondary
#> 2406                            Lewisham         209         Special
#> 2407                              Merton         315     All schools
#> 2408                              Merton         315         Primary
#> 2409                              Merton         315       Secondary
#> 2410                              Merton         315         Special
#> 2411                              Newham         316     All schools
#> 2412                              Newham         316         Primary
#> 2413                              Newham         316       Secondary
#> 2414                              Newham         316         Special
#> 2415                           Redbridge         317     All schools
#> 2416                           Redbridge         317         Primary
#> 2417                           Redbridge         317       Secondary
#> 2418                           Redbridge         317         Special
#> 2419                Richmond upon Thames         318     All schools
#> 2420                Richmond upon Thames         318         Primary
#> 2421                Richmond upon Thames         318       Secondary
#> 2422                Richmond upon Thames         318         Special
#> 2423                           Southwark         210     All schools
#> 2424                           Southwark         210         Primary
#> 2425                           Southwark         210       Secondary
#> 2426                           Southwark         210         Special
#> 2427                              Sutton         319     All schools
#> 2428                              Sutton         319         Primary
#> 2429                              Sutton         319       Secondary
#> 2430                              Sutton         319         Special
#> 2431                       Tower Hamlets         211     All schools
#> 2432                       Tower Hamlets         211         Primary
#> 2433                       Tower Hamlets         211       Secondary
#> 2434                       Tower Hamlets         211         Special
#> 2435                      Waltham Forest         320     All schools
#> 2436                      Waltham Forest         320         Primary
#> 2437                      Waltham Forest         320       Secondary
#> 2438                      Waltham Forest         320         Special
#> 2439                          Wandsworth         212     All schools
#> 2440                          Wandsworth         212         Primary
#> 2441                          Wandsworth         212       Secondary
#> 2442                          Wandsworth         212         Special
#> 2443                         Westminster         213     All schools
#> 2444                         Westminster         213         Primary
#> 2445                         Westminster         213       Secondary
#> 2446                         Westminster         213         Special
#> 2447                                <NA>          NA     All schools
#> 2448                                <NA>          NA         Primary
#> 2449                                <NA>          NA       Secondary
#> 2450                                <NA>          NA         Special
#> 2451                              Medway         887     All schools
#> 2452                              Medway         887         Primary
#> 2453                              Medway         887       Secondary
#> 2454                              Medway         887         Special
#> 2455                    Bracknell Forest         867     All schools
#> 2456                    Bracknell Forest         867         Primary
#> 2457                    Bracknell Forest         867       Secondary
#> 2458                    Bracknell Forest         867         Special
#> 2459                      West Berkshire         869     All schools
#> 2460                      West Berkshire         869         Primary
#> 2461                      West Berkshire         869       Secondary
#> 2462                      West Berkshire         869         Special
#> 2463                             Reading         870     All schools
#> 2464                             Reading         870         Primary
#> 2465                             Reading         870       Secondary
#> 2466                             Reading         870         Special
#> 2467                              Slough         871     All schools
#> 2468                              Slough         871         Primary
#> 2469                              Slough         871       Secondary
#> 2470                              Slough         871         Special
#> 2471              Windsor and Maidenhead         868     All schools
#> 2472              Windsor and Maidenhead         868         Primary
#> 2473              Windsor and Maidenhead         868       Secondary
#> 2474              Windsor and Maidenhead         868         Special
#> 2475                           Wokingham         872     All schools
#> 2476                           Wokingham         872         Primary
#> 2477                           Wokingham         872       Secondary
#> 2478                           Wokingham         872         Special
#> 2479                       Milton Keynes         826     All schools
#> 2480                       Milton Keynes         826         Primary
#> 2481                       Milton Keynes         826       Secondary
#> 2482                       Milton Keynes         826         Special
#> 2483                   Brighton and Hove         846     All schools
#> 2484                   Brighton and Hove         846         Primary
#> 2485                   Brighton and Hove         846       Secondary
#> 2486                   Brighton and Hove         846         Special
#> 2487                          Portsmouth         851     All schools
#> 2488                          Portsmouth         851         Primary
#> 2489                          Portsmouth         851       Secondary
#> 2490                          Portsmouth         851         Special
#> 2491                         Southampton         852     All schools
#> 2492                         Southampton         852         Primary
#> 2493                         Southampton         852       Secondary
#> 2494                         Southampton         852         Special
#> 2495                       Isle of Wight         921     All schools
#> 2496                       Isle of Wight         921         Primary
#> 2497                       Isle of Wight         921       Secondary
#> 2498                       Isle of Wight         921         Special
#> 2499                     Buckinghamshire         825     All schools
#> 2500                     Buckinghamshire         825         Primary
#> 2501                     Buckinghamshire         825       Secondary
#> 2502                     Buckinghamshire         825         Special
#> 2503                         East Sussex         845     All schools
#> 2504                         East Sussex         845         Primary
#> 2505                         East Sussex         845       Secondary
#> 2506                         East Sussex         845         Special
#> 2507                           Hampshire         850     All schools
#> 2508                           Hampshire         850         Primary
#> 2509                           Hampshire         850       Secondary
#> 2510                           Hampshire         850         Special
#> 2511                                Kent         886     All schools
#> 2512                                Kent         886         Primary
#> 2513                                Kent         886       Secondary
#> 2514                                Kent         886         Special
#> 2515                         Oxfordshire         931     All schools
#> 2516                         Oxfordshire         931         Primary
#> 2517                         Oxfordshire         931       Secondary
#> 2518                         Oxfordshire         931         Special
#> 2519                              Surrey         936     All schools
#> 2520                              Surrey         936         Primary
#> 2521                              Surrey         936       Secondary
#> 2522                              Surrey         936         Special
#> 2523                         West Sussex         938     All schools
#> 2524                         West Sussex         938         Primary
#> 2525                         West Sussex         938       Secondary
#> 2526                         West Sussex         938         Special
#> 2527                                <NA>          NA     All schools
#> 2528                                <NA>          NA         Primary
#> 2529                                <NA>          NA       Secondary
#> 2530                                <NA>          NA         Special
#> 2531        Bath and North East Somerset         800     All schools
#> 2532        Bath and North East Somerset         800         Primary
#> 2533        Bath and North East Somerset         800       Secondary
#> 2534        Bath and North East Somerset         800         Special
#> 2535                    Bristol, City of         801     All schools
#> 2536                    Bristol, City of         801         Primary
#> 2537                    Bristol, City of         801       Secondary
#> 2538                    Bristol, City of         801         Special
#> 2539                      North Somerset         802     All schools
#> 2540                      North Somerset         802         Primary
#> 2541                      North Somerset         802       Secondary
#> 2542                      North Somerset         802         Special
#> 2543               South Gloucestershire         803     All schools
#> 2544               South Gloucestershire         803         Primary
#> 2545               South Gloucestershire         803       Secondary
#> 2546               South Gloucestershire         803         Special
#> 2547                            Plymouth         879     All schools
#> 2548                            Plymouth         879         Primary
#> 2549                            Plymouth         879       Secondary
#> 2550                            Plymouth         879         Special
#> 2551                              Torbay         880     All schools
#> 2552                              Torbay         880         Primary
#> 2553                              Torbay         880       Secondary
#> 2554                              Torbay         880         Special
#> 2555                             Swindon         866     All schools
#> 2556                             Swindon         866         Primary
#> 2557                             Swindon         866       Secondary
#> 2558                             Swindon         866         Special
#> 2559                            Cornwall         908     All schools
#> 2560                            Cornwall         908         Primary
#> 2561                            Cornwall         908       Secondary
#> 2562                            Cornwall         908         Special
#> 2563                     Isles of Scilly         420     All schools
#> 2564                     Isles of Scilly         420       Secondary
#> 2565                           Wiltshire         865     All schools
#> 2566                           Wiltshire         865         Primary
#> 2567                           Wiltshire         865       Secondary
#> 2568                           Wiltshire         865         Special
#> 2569 Bournemouth, Christchurch and Poole         839     All schools
#> 2570 Bournemouth, Christchurch and Poole         839         Primary
#> 2571 Bournemouth, Christchurch and Poole         839       Secondary
#> 2572 Bournemouth, Christchurch and Poole         839         Special
#> 2573                              Dorset         838     All schools
#> 2574                              Dorset         838         Primary
#> 2575                              Dorset         838       Secondary
#> 2576                              Dorset         838         Special
#> 2577                            Somerset         933     All schools
#> 2578                            Somerset         933         Primary
#> 2579                            Somerset         933       Secondary
#> 2580                            Somerset         933         Special
#> 2581                               Devon         878     All schools
#> 2582                               Devon         878         Primary
#> 2583                               Devon         878       Secondary
#> 2584                               Devon         878         Special
#> 2585                     Gloucestershire         916     All schools
#> 2586                     Gloucestershire         916         Primary
#> 2587                     Gloucestershire         916       Secondary
#> 2588                     Gloucestershire         916         Special
#> 2589                                <NA>          NA     All schools
#> 2590                                <NA>          NA         Primary
#> 2591                                <NA>          NA       Secondary
#> 2592                                <NA>          NA         Special
#> 2593                                <NA>          NA     All schools
#> 2594                                <NA>          NA         Primary
#> 2595                                <NA>          NA       Secondary
#> 2596                                <NA>          NA         Special
#> 2597                          Hartlepool         805     All schools
#> 2598                          Hartlepool         805         Primary
#> 2599                          Hartlepool         805       Secondary
#> 2600                          Hartlepool         805         Special
#> 2601                       Middlesbrough         806     All schools
#> 2602                       Middlesbrough         806         Primary
#> 2603                       Middlesbrough         806       Secondary
#> 2604                       Middlesbrough         806         Special
#> 2605                Redcar and Cleveland         807     All schools
#> 2606                Redcar and Cleveland         807         Primary
#> 2607                Redcar and Cleveland         807       Secondary
#> 2608                Redcar and Cleveland         807         Special
#> 2609                    Stockton-on-Tees         808     All schools
#> 2610                    Stockton-on-Tees         808         Primary
#> 2611                    Stockton-on-Tees         808       Secondary
#> 2612                    Stockton-on-Tees         808         Special
#> 2613                          Darlington         841     All schools
#> 2614                          Darlington         841         Primary
#> 2615                          Darlington         841       Secondary
#> 2616                          Darlington         841         Special
#> 2617                       County Durham         840     All schools
#> 2618                       County Durham         840         Primary
#> 2619                       County Durham         840       Secondary
#> 2620                       County Durham         840         Special
#> 2621                      Northumberland         929     All schools
#> 2622                      Northumberland         929         Primary
#> 2623                      Northumberland         929       Secondary
#> 2624                      Northumberland         929         Special
#> 2625                 Newcastle upon Tyne         391     All schools
#> 2626                 Newcastle upon Tyne         391         Primary
#> 2627                 Newcastle upon Tyne         391       Secondary
#> 2628                 Newcastle upon Tyne         391         Special
#> 2629                      North Tyneside         392     All schools
#> 2630                      North Tyneside         392         Primary
#> 2631                      North Tyneside         392       Secondary
#> 2632                      North Tyneside         392         Special
#> 2633                      South Tyneside         393     All schools
#> 2634                      South Tyneside         393         Primary
#> 2635                      South Tyneside         393       Secondary
#> 2636                      South Tyneside         393         Special
#> 2637                          Sunderland         394     All schools
#> 2638                          Sunderland         394         Primary
#> 2639                          Sunderland         394       Secondary
#> 2640                          Sunderland         394         Special
#> 2641                           Gateshead         390     All schools
#> 2642                           Gateshead         390         Primary
#> 2643                           Gateshead         390       Secondary
#> 2644                           Gateshead         390         Special
#> 2645                                <NA>          NA     All schools
#> 2646                                <NA>          NA         Primary
#> 2647                                <NA>          NA       Secondary
#> 2648                                <NA>          NA         Special
#> 2649                              Halton         876     All schools
#> 2650                              Halton         876         Primary
#> 2651                              Halton         876       Secondary
#> 2652                              Halton         876         Special
#> 2653                          Warrington         877     All schools
#> 2654                          Warrington         877         Primary
#> 2655                          Warrington         877       Secondary
#> 2656                          Warrington         877         Special
#> 2657               Blackburn with Darwen         889     All schools
#> 2658               Blackburn with Darwen         889         Primary
#> 2659               Blackburn with Darwen         889       Secondary
#> 2660               Blackburn with Darwen         889         Special
#> 2661                           Blackpool         890     All schools
#> 2662                           Blackpool         890         Primary
#> 2663                           Blackpool         890       Secondary
#> 2664                           Blackpool         890         Special
#> 2665                       Cheshire East         895     All schools
#> 2666                       Cheshire East         895         Primary
#> 2667                       Cheshire East         895       Secondary
#> 2668                       Cheshire East         895         Special
#> 2669           Cheshire West and Chester         896     All schools
#> 2670           Cheshire West and Chester         896         Primary
#> 2671           Cheshire West and Chester         896       Secondary
#> 2672           Cheshire West and Chester         896         Special
#> 2673                          Cumberland         942     All schools
#> 2674                          Cumberland         942         Primary
#> 2675                          Cumberland         942       Secondary
#> 2676                          Cumberland         942         Special
#> 2677             Westmorland and Furness         943     All schools
#> 2678             Westmorland and Furness         943         Primary
#> 2679             Westmorland and Furness         943       Secondary
#> 2680             Westmorland and Furness         943         Special
#> 2681                              Bolton         350     All schools
#> 2682                              Bolton         350         Primary
#> 2683                              Bolton         350       Secondary
#> 2684                              Bolton         350         Special
#> 2685                                Bury         351     All schools
#> 2686                                Bury         351         Primary
#> 2687                                Bury         351       Secondary
#> 2688                                Bury         351         Special
#> 2689                          Manchester         352     All schools
#> 2690                          Manchester         352         Primary
#> 2691                          Manchester         352       Secondary
#> 2692                          Manchester         352         Special
#> 2693                              Oldham         353     All schools
#> 2694                              Oldham         353         Primary
#> 2695                              Oldham         353       Secondary
#> 2696                              Oldham         353         Special
#> 2697                            Rochdale         354     All schools
#> 2698                            Rochdale         354         Primary
#> 2699                            Rochdale         354       Secondary
#> 2700                            Rochdale         354         Special
#> 2701                             Salford         355     All schools
#> 2702                             Salford         355         Primary
#> 2703                             Salford         355       Secondary
#> 2704                             Salford         355         Special
#> 2705                           Stockport         356     All schools
#> 2706                           Stockport         356         Primary
#> 2707                           Stockport         356       Secondary
#> 2708                           Stockport         356         Special
#> 2709                            Tameside         357     All schools
#> 2710                            Tameside         357         Primary
#> 2711                            Tameside         357       Secondary
#> 2712                            Tameside         357         Special
#> 2713                            Trafford         358     All schools
#> 2714                            Trafford         358         Primary
#> 2715                            Trafford         358       Secondary
#> 2716                            Trafford         358         Special
#> 2717                               Wigan         359     All schools
#> 2718                               Wigan         359         Primary
#> 2719                               Wigan         359       Secondary
#> 2720                               Wigan         359         Special
#> 2721                            Knowsley         340     All schools
#> 2722                            Knowsley         340         Primary
#> 2723                            Knowsley         340       Secondary
#> 2724                            Knowsley         340         Special
#> 2725                           Liverpool         341     All schools
#> 2726                           Liverpool         341         Primary
#> 2727                           Liverpool         341       Secondary
#> 2728                           Liverpool         341         Special
#> 2729                          St. Helens         342     All schools
#> 2730                          St. Helens         342         Primary
#> 2731                          St. Helens         342       Secondary
#> 2732                          St. Helens         342         Special
#> 2733                              Sefton         343     All schools
#> 2734                              Sefton         343         Primary
#> 2735                              Sefton         343       Secondary
#> 2736                              Sefton         343         Special
#> 2737                              Wirral         344     All schools
#> 2738                              Wirral         344         Primary
#> 2739                              Wirral         344       Secondary
#> 2740                              Wirral         344         Special
#> 2741                          Lancashire         888     All schools
#> 2742                          Lancashire         888         Primary
#> 2743                          Lancashire         888       Secondary
#> 2744                          Lancashire         888         Special
#> 2745                                <NA>          NA     All schools
#> 2746                                <NA>          NA         Primary
#> 2747                                <NA>          NA       Secondary
#> 2748                                <NA>          NA         Special
#> 2749         Kingston upon Hull, City of         810     All schools
#> 2750         Kingston upon Hull, City of         810         Primary
#> 2751         Kingston upon Hull, City of         810       Secondary
#> 2752         Kingston upon Hull, City of         810         Special
#> 2753            East Riding of Yorkshire         811     All schools
#> 2754            East Riding of Yorkshire         811         Primary
#> 2755            East Riding of Yorkshire         811       Secondary
#> 2756            East Riding of Yorkshire         811         Special
#> 2757             North East Lincolnshire         812     All schools
#> 2758             North East Lincolnshire         812         Primary
#> 2759             North East Lincolnshire         812       Secondary
#> 2760             North East Lincolnshire         812         Special
#> 2761                  North Lincolnshire         813     All schools
#> 2762                  North Lincolnshire         813         Primary
#> 2763                  North Lincolnshire         813       Secondary
#> 2764                  North Lincolnshire         813         Special
#> 2765                                York         816     All schools
#> 2766                                York         816         Primary
#> 2767                                York         816       Secondary
#> 2768                                York         816         Special
#> 2769                     North Yorkshire         815     All schools
#> 2770                     North Yorkshire         815         Primary
#> 2771                     North Yorkshire         815       Secondary
#> 2772                     North Yorkshire         815         Special
#> 2773                            Barnsley         370     All schools
#> 2774                            Barnsley         370         Primary
#> 2775                            Barnsley         370       Secondary
#> 2776                            Barnsley         370         Special
#> 2777                           Doncaster         371     All schools
#> 2778                           Doncaster         371         Primary
#> 2779                           Doncaster         371       Secondary
#> 2780                           Doncaster         371         Special
#> 2781                           Rotherham         372     All schools
#> 2782                           Rotherham         372         Primary
#> 2783                           Rotherham         372       Secondary
#> 2784                           Rotherham         372         Special
#> 2785                           Sheffield         373     All schools
#> 2786                           Sheffield         373         Primary
#> 2787                           Sheffield         373       Secondary
#> 2788                           Sheffield         373         Special
#> 2789                            Bradford         380     All schools
#> 2790                            Bradford         380         Primary
#> 2791                            Bradford         380       Secondary
#> 2792                            Bradford         380         Special
#> 2793                          Calderdale         381     All schools
#> 2794                          Calderdale         381         Primary
#> 2795                          Calderdale         381       Secondary
#> 2796                          Calderdale         381         Special
#> 2797                            Kirklees         382     All schools
#> 2798                            Kirklees         382         Primary
#> 2799                            Kirklees         382       Secondary
#> 2800                            Kirklees         382         Special
#> 2801                               Leeds         383     All schools
#> 2802                               Leeds         383         Primary
#> 2803                               Leeds         383       Secondary
#> 2804                               Leeds         383         Special
#> 2805                           Wakefield         384     All schools
#> 2806                           Wakefield         384         Primary
#> 2807                           Wakefield         384       Secondary
#> 2808                           Wakefield         384         Special
#> 2809                                <NA>          NA     All schools
#> 2810                                <NA>          NA         Primary
#> 2811                                <NA>          NA       Secondary
#> 2812                                <NA>          NA         Special
#> 2813                               Derby         831     All schools
#> 2814                               Derby         831         Primary
#> 2815                               Derby         831       Secondary
#> 2816                               Derby         831         Special
#> 2817                           Leicester         856     All schools
#> 2818                           Leicester         856         Primary
#> 2819                           Leicester         856       Secondary
#> 2820                           Leicester         856         Special
#> 2821                             Rutland         857     All schools
#> 2822                             Rutland         857         Primary
#> 2823                             Rutland         857       Secondary
#> 2824                          Nottingham         892     All schools
#> 2825                          Nottingham         892         Primary
#> 2826                          Nottingham         892       Secondary
#> 2827                          Nottingham         892         Special
#> 2828              North Northamptonshire         940     All schools
#> 2829              North Northamptonshire         940         Primary
#> 2830              North Northamptonshire         940       Secondary
#> 2831              North Northamptonshire         940         Special
#> 2832               West Northamptonshire         941     All schools
#> 2833               West Northamptonshire         941         Primary
#> 2834               West Northamptonshire         941       Secondary
#> 2835               West Northamptonshire         941         Special
#> 2836                          Derbyshire         830     All schools
#> 2837                          Derbyshire         830         Primary
#> 2838                          Derbyshire         830       Secondary
#> 2839                          Derbyshire         830         Special
#> 2840                      Leicestershire         855     All schools
#> 2841                      Leicestershire         855         Primary
#> 2842                      Leicestershire         855       Secondary
#> 2843                      Leicestershire         855         Special
#> 2844                        Lincolnshire         925     All schools
#> 2845                        Lincolnshire         925         Primary
#> 2846                        Lincolnshire         925       Secondary
#> 2847                        Lincolnshire         925         Special
#> 2848                     Nottinghamshire         891     All schools
#> 2849                     Nottinghamshire         891         Primary
#> 2850                     Nottinghamshire         891       Secondary
#> 2851                     Nottinghamshire         891         Special
#> 2852                                <NA>          NA     All schools
#> 2853                                <NA>          NA         Primary
#> 2854                                <NA>          NA       Secondary
#> 2855                                <NA>          NA         Special
#> 2856            Herefordshire, County of         884     All schools
#> 2857            Herefordshire, County of         884         Primary
#> 2858            Herefordshire, County of         884       Secondary
#> 2859            Herefordshire, County of         884         Special
#> 2860                  Telford and Wrekin         894     All schools
#> 2861                  Telford and Wrekin         894         Primary
#> 2862                  Telford and Wrekin         894       Secondary
#> 2863                  Telford and Wrekin         894         Special
#> 2864                      Stoke-on-Trent         861     All schools
#> 2865                      Stoke-on-Trent         861         Primary
#> 2866                      Stoke-on-Trent         861       Secondary
#> 2867                      Stoke-on-Trent         861         Special
#> 2868                          Shropshire         893     All schools
#> 2869                          Shropshire         893         Primary
#> 2870                          Shropshire         893       Secondary
#> 2871                          Shropshire         893         Special
#> 2872                          Birmingham         330     All schools
#> 2873                          Birmingham         330         Primary
#> 2874                          Birmingham         330       Secondary
#> 2875                          Birmingham         330         Special
#> 2876                            Coventry         331     All schools
#> 2877                            Coventry         331         Primary
#> 2878                            Coventry         331       Secondary
#> 2879                            Coventry         331         Special
#> 2880                              Dudley         332     All schools
#> 2881                              Dudley         332         Primary
#> 2882                              Dudley         332       Secondary
#> 2883                              Dudley         332         Special
#> 2884                            Sandwell         333     All schools
#> 2885                            Sandwell         333         Primary
#> 2886                            Sandwell         333       Secondary
#> 2887                            Sandwell         333         Special
#> 2888                            Solihull         334     All schools
#> 2889                            Solihull         334         Primary
#> 2890                            Solihull         334       Secondary
#> 2891                            Solihull         334         Special
#> 2892                             Walsall         335     All schools
#> 2893                             Walsall         335         Primary
#> 2894                             Walsall         335       Secondary
#> 2895                             Walsall         335         Special
#> 2896                       Wolverhampton         336     All schools
#> 2897                       Wolverhampton         336         Primary
#> 2898                       Wolverhampton         336       Secondary
#> 2899                       Wolverhampton         336         Special
#> 2900                       Staffordshire         860     All schools
#> 2901                       Staffordshire         860         Primary
#> 2902                       Staffordshire         860       Secondary
#> 2903                       Staffordshire         860         Special
#> 2904                        Warwickshire         937     All schools
#> 2905                        Warwickshire         937         Primary
#> 2906                        Warwickshire         937       Secondary
#> 2907                        Warwickshire         937         Special
#> 2908                      Worcestershire         885     All schools
#> 2909                      Worcestershire         885         Primary
#> 2910                      Worcestershire         885       Secondary
#> 2911                      Worcestershire         885         Special
#> 2912                                <NA>          NA     All schools
#> 2913                                <NA>          NA         Primary
#> 2914                                <NA>          NA       Secondary
#> 2915                                <NA>          NA         Special
#> 2916                        Peterborough         874     All schools
#> 2917                        Peterborough         874         Primary
#> 2918                        Peterborough         874       Secondary
#> 2919                        Peterborough         874         Special
#> 2920                               Luton         821     All schools
#> 2921                               Luton         821         Primary
#> 2922                               Luton         821       Secondary
#> 2923                               Luton         821         Special
#> 2924                     Southend-on-Sea         882     All schools
#> 2925                     Southend-on-Sea         882         Primary
#> 2926                     Southend-on-Sea         882       Secondary
#> 2927                     Southend-on-Sea         882         Special
#> 2928                            Thurrock         883     All schools
#> 2929                            Thurrock         883         Primary
#> 2930                            Thurrock         883       Secondary
#> 2931                            Thurrock         883         Special
#> 2932                             Bedford         822     All schools
#> 2933                             Bedford         822         Primary
#> 2934                             Bedford         822       Secondary
#> 2935                             Bedford         822         Special
#> 2936                Central Bedfordshire         823     All schools
#> 2937                Central Bedfordshire         823         Primary
#> 2938                Central Bedfordshire         823       Secondary
#> 2939                Central Bedfordshire         823         Special
#> 2940                      Cambridgeshire         873     All schools
#> 2941                      Cambridgeshire         873         Primary
#> 2942                      Cambridgeshire         873       Secondary
#> 2943                      Cambridgeshire         873         Special
#> 2944                               Essex         881     All schools
#> 2945                               Essex         881         Primary
#> 2946                               Essex         881       Secondary
#> 2947                               Essex         881         Special
#> 2948                       Hertfordshire         919     All schools
#> 2949                       Hertfordshire         919         Primary
#> 2950                       Hertfordshire         919       Secondary
#> 2951                       Hertfordshire         919         Special
#> 2952                             Norfolk         926     All schools
#> 2953                             Norfolk         926         Primary
#> 2954                             Norfolk         926       Secondary
#> 2955                             Norfolk         926         Special
#> 2956                             Suffolk         935     All schools
#> 2957                             Suffolk         935         Primary
#> 2958                             Suffolk         935       Secondary
#> 2959                             Suffolk         935         Special
#> 2960                                <NA>          NA     All schools
#> 2961                                <NA>          NA         Primary
#> 2962                                <NA>          NA       Secondary
#> 2963                                <NA>          NA         Special
#> 2964                      City of London         201     All schools
#> 2965                      City of London         201         Primary
#> 2966                Barking and Dagenham         301     All schools
#> 2967                Barking and Dagenham         301         Primary
#> 2968                Barking and Dagenham         301       Secondary
#> 2969                Barking and Dagenham         301         Special
#> 2970                              Barnet         302     All schools
#> 2971                              Barnet         302         Primary
#> 2972                              Barnet         302       Secondary
#> 2973                              Barnet         302         Special
#> 2974                              Bexley         303     All schools
#> 2975                              Bexley         303         Primary
#> 2976                              Bexley         303       Secondary
#> 2977                              Bexley         303         Special
#> 2978                               Brent         304     All schools
#> 2979                               Brent         304         Primary
#> 2980                               Brent         304       Secondary
#> 2981                               Brent         304         Special
#> 2982                             Bromley         305     All schools
#> 2983                             Bromley         305         Primary
#> 2984                             Bromley         305       Secondary
#> 2985                             Bromley         305         Special
#> 2986                              Camden         202     All schools
#> 2987                              Camden         202         Primary
#> 2988                              Camden         202       Secondary
#> 2989                              Camden         202         Special
#> 2990                             Croydon         306     All schools
#> 2991                             Croydon         306         Primary
#> 2992                             Croydon         306       Secondary
#> 2993                             Croydon         306         Special
#> 2994                              Ealing         307     All schools
#> 2995                              Ealing         307         Primary
#> 2996                              Ealing         307       Secondary
#> 2997                              Ealing         307         Special
#> 2998                             Enfield         308     All schools
#> 2999                             Enfield         308         Primary
#> 3000                             Enfield         308       Secondary
#> 3001                             Enfield         308         Special
#> 3002                           Greenwich         203     All schools
#> 3003                           Greenwich         203         Primary
#> 3004                           Greenwich         203       Secondary
#> 3005                           Greenwich         203         Special
#> 3006                             Hackney         204     All schools
#> 3007                             Hackney         204         Primary
#> 3008                             Hackney         204       Secondary
#> 3009                             Hackney         204         Special
#> 3010              Hammersmith and Fulham         205     All schools
#> 3011              Hammersmith and Fulham         205         Primary
#> 3012              Hammersmith and Fulham         205       Secondary
#> 3013              Hammersmith and Fulham         205         Special
#> 3014                            Haringey         309     All schools
#> 3015                            Haringey         309         Primary
#> 3016                            Haringey         309       Secondary
#> 3017                            Haringey         309         Special
#> 3018                              Harrow         310     All schools
#> 3019                              Harrow         310         Primary
#> 3020                              Harrow         310       Secondary
#> 3021                              Harrow         310         Special
#> 3022                            Havering         311     All schools
#> 3023                            Havering         311         Primary
#> 3024                            Havering         311       Secondary
#> 3025                            Havering         311         Special
#> 3026                          Hillingdon         312     All schools
#> 3027                          Hillingdon         312         Primary
#> 3028                          Hillingdon         312       Secondary
#> 3029                          Hillingdon         312         Special
#> 3030                            Hounslow         313     All schools
#> 3031                            Hounslow         313         Primary
#> 3032                            Hounslow         313       Secondary
#> 3033                            Hounslow         313         Special
#> 3034                           Islington         206     All schools
#> 3035                           Islington         206         Primary
#> 3036                           Islington         206       Secondary
#> 3037                           Islington         206         Special
#> 3038              Kensington and Chelsea         207     All schools
#> 3039              Kensington and Chelsea         207         Primary
#> 3040              Kensington and Chelsea         207       Secondary
#> 3041              Kensington and Chelsea         207         Special
#> 3042                Kingston upon Thames         314     All schools
#> 3043                Kingston upon Thames         314         Primary
#> 3044                Kingston upon Thames         314       Secondary
#> 3045                Kingston upon Thames         314         Special
#> 3046                             Lambeth         208     All schools
#> 3047                             Lambeth         208         Primary
#> 3048                             Lambeth         208       Secondary
#> 3049                             Lambeth         208         Special
#> 3050                            Lewisham         209     All schools
#> 3051                            Lewisham         209         Primary
#> 3052                            Lewisham         209       Secondary
#> 3053                            Lewisham         209         Special
#> 3054                              Merton         315     All schools
#> 3055                              Merton         315         Primary
#> 3056                              Merton         315       Secondary
#> 3057                              Merton         315         Special
#> 3058                              Newham         316     All schools
#> 3059                              Newham         316         Primary
#> 3060                              Newham         316       Secondary
#> 3061                              Newham         316         Special
#> 3062                           Redbridge         317     All schools
#> 3063                           Redbridge         317         Primary
#> 3064                           Redbridge         317       Secondary
#> 3065                           Redbridge         317         Special
#> 3066                Richmond upon Thames         318     All schools
#> 3067                Richmond upon Thames         318         Primary
#> 3068                Richmond upon Thames         318       Secondary
#> 3069                Richmond upon Thames         318         Special
#> 3070                           Southwark         210     All schools
#> 3071                           Southwark         210         Primary
#> 3072                           Southwark         210       Secondary
#> 3073                           Southwark         210         Special
#> 3074                              Sutton         319     All schools
#> 3075                              Sutton         319         Primary
#> 3076                              Sutton         319       Secondary
#> 3077                              Sutton         319         Special
#> 3078                       Tower Hamlets         211     All schools
#> 3079                       Tower Hamlets         211         Primary
#> 3080                       Tower Hamlets         211       Secondary
#> 3081                       Tower Hamlets         211         Special
#> 3082                      Waltham Forest         320     All schools
#> 3083                      Waltham Forest         320         Primary
#> 3084                      Waltham Forest         320       Secondary
#> 3085                      Waltham Forest         320         Special
#> 3086                          Wandsworth         212     All schools
#> 3087                          Wandsworth         212         Primary
#> 3088                          Wandsworth         212       Secondary
#> 3089                          Wandsworth         212         Special
#> 3090                         Westminster         213     All schools
#> 3091                         Westminster         213         Primary
#> 3092                         Westminster         213       Secondary
#> 3093                         Westminster         213         Special
#> 3094                                <NA>          NA     All schools
#> 3095                                <NA>          NA         Primary
#> 3096                                <NA>          NA       Secondary
#> 3097                                <NA>          NA         Special
#> 3098                              Medway         887     All schools
#> 3099                              Medway         887         Primary
#> 3100                              Medway         887       Secondary
#> 3101                              Medway         887         Special
#> 3102                    Bracknell Forest         867     All schools
#> 3103                    Bracknell Forest         867         Primary
#> 3104                    Bracknell Forest         867       Secondary
#> 3105                    Bracknell Forest         867         Special
#> 3106                      West Berkshire         869     All schools
#> 3107                      West Berkshire         869         Primary
#> 3108                      West Berkshire         869       Secondary
#> 3109                      West Berkshire         869         Special
#> 3110                             Reading         870     All schools
#> 3111                             Reading         870         Primary
#> 3112                             Reading         870       Secondary
#> 3113                             Reading         870         Special
#> 3114                              Slough         871     All schools
#> 3115                              Slough         871         Primary
#> 3116                              Slough         871       Secondary
#> 3117                              Slough         871         Special
#> 3118              Windsor and Maidenhead         868     All schools
#> 3119              Windsor and Maidenhead         868         Primary
#> 3120              Windsor and Maidenhead         868       Secondary
#> 3121              Windsor and Maidenhead         868         Special
#> 3122                           Wokingham         872     All schools
#> 3123                           Wokingham         872         Primary
#> 3124                           Wokingham         872       Secondary
#> 3125                           Wokingham         872         Special
#> 3126                       Milton Keynes         826     All schools
#> 3127                       Milton Keynes         826         Primary
#> 3128                       Milton Keynes         826       Secondary
#> 3129                       Milton Keynes         826         Special
#> 3130                   Brighton and Hove         846     All schools
#> 3131                   Brighton and Hove         846         Primary
#> 3132                   Brighton and Hove         846       Secondary
#> 3133                   Brighton and Hove         846         Special
#> 3134                          Portsmouth         851     All schools
#> 3135                          Portsmouth         851         Primary
#> 3136                          Portsmouth         851       Secondary
#> 3137                          Portsmouth         851         Special
#> 3138                         Southampton         852     All schools
#> 3139                         Southampton         852         Primary
#> 3140                         Southampton         852       Secondary
#> 3141                         Southampton         852         Special
#> 3142                       Isle of Wight         921     All schools
#> 3143                       Isle of Wight         921         Primary
#> 3144                       Isle of Wight         921       Secondary
#> 3145                       Isle of Wight         921         Special
#> 3146                     Buckinghamshire         825     All schools
#> 3147                     Buckinghamshire         825         Primary
#> 3148                     Buckinghamshire         825       Secondary
#> 3149                     Buckinghamshire         825         Special
#> 3150                         East Sussex         845     All schools
#> 3151                         East Sussex         845         Primary
#> 3152                         East Sussex         845       Secondary
#> 3153                         East Sussex         845         Special
#> 3154                           Hampshire         850     All schools
#> 3155                           Hampshire         850         Primary
#> 3156                           Hampshire         850       Secondary
#> 3157                           Hampshire         850         Special
#> 3158                                Kent         886     All schools
#> 3159                                Kent         886         Primary
#> 3160                                Kent         886       Secondary
#> 3161                                Kent         886         Special
#> 3162                         Oxfordshire         931     All schools
#> 3163                         Oxfordshire         931         Primary
#> 3164                         Oxfordshire         931       Secondary
#> 3165                         Oxfordshire         931         Special
#> 3166                              Surrey         936     All schools
#> 3167                              Surrey         936         Primary
#> 3168                              Surrey         936       Secondary
#> 3169                              Surrey         936         Special
#> 3170                         West Sussex         938     All schools
#> 3171                         West Sussex         938         Primary
#> 3172                         West Sussex         938       Secondary
#> 3173                         West Sussex         938         Special
#> 3174                                <NA>          NA     All schools
#> 3175                                <NA>          NA         Primary
#> 3176                                <NA>          NA       Secondary
#> 3177                                <NA>          NA         Special
#> 3178        Bath and North East Somerset         800     All schools
#> 3179        Bath and North East Somerset         800         Primary
#> 3180        Bath and North East Somerset         800       Secondary
#> 3181        Bath and North East Somerset         800         Special
#> 3182                    Bristol, City of         801     All schools
#> 3183                    Bristol, City of         801         Primary
#> 3184                    Bristol, City of         801       Secondary
#> 3185                    Bristol, City of         801         Special
#> 3186                      North Somerset         802     All schools
#> 3187                      North Somerset         802         Primary
#> 3188                      North Somerset         802       Secondary
#> 3189                      North Somerset         802         Special
#> 3190               South Gloucestershire         803     All schools
#> 3191               South Gloucestershire         803         Primary
#> 3192               South Gloucestershire         803       Secondary
#> 3193               South Gloucestershire         803         Special
#> 3194                            Plymouth         879     All schools
#> 3195                            Plymouth         879         Primary
#> 3196                            Plymouth         879       Secondary
#> 3197                            Plymouth         879         Special
#> 3198                              Torbay         880     All schools
#> 3199                              Torbay         880         Primary
#> 3200                              Torbay         880       Secondary
#> 3201                              Torbay         880         Special
#> 3202                             Swindon         866     All schools
#> 3203                             Swindon         866         Primary
#> 3204                             Swindon         866       Secondary
#> 3205                             Swindon         866         Special
#> 3206                            Cornwall         908     All schools
#> 3207                            Cornwall         908         Primary
#> 3208                            Cornwall         908       Secondary
#> 3209                            Cornwall         908         Special
#> 3210                     Isles of Scilly         420     All schools
#> 3211                     Isles of Scilly         420       Secondary
#> 3212                           Wiltshire         865     All schools
#> 3213                           Wiltshire         865         Primary
#> 3214                           Wiltshire         865       Secondary
#> 3215                           Wiltshire         865         Special
#> 3216 Bournemouth, Christchurch and Poole         839     All schools
#> 3217 Bournemouth, Christchurch and Poole         839         Primary
#> 3218 Bournemouth, Christchurch and Poole         839       Secondary
#> 3219 Bournemouth, Christchurch and Poole         839         Special
#> 3220                              Dorset         838     All schools
#> 3221                              Dorset         838         Primary
#> 3222                              Dorset         838       Secondary
#> 3223                              Dorset         838         Special
#> 3224                            Somerset         933     All schools
#> 3225                            Somerset         933         Primary
#> 3226                            Somerset         933       Secondary
#> 3227                            Somerset         933         Special
#> 3228                               Devon         878     All schools
#> 3229                               Devon         878         Primary
#> 3230                               Devon         878       Secondary
#> 3231                               Devon         878         Special
#> 3232                     Gloucestershire         916     All schools
#> 3233                     Gloucestershire         916         Primary
#> 3234                     Gloucestershire         916       Secondary
#> 3235                     Gloucestershire         916         Special
#> 3236                                <NA>          NA     All schools
#> 3237                                <NA>          NA         Primary
#> 3238                                <NA>          NA       Secondary
#> 3239                                <NA>          NA         Special
#> 3240                                <NA>          NA     All schools
#> 3241                                <NA>          NA         Primary
#> 3242                                <NA>          NA       Secondary
#> 3243                                <NA>          NA         Special
#> 3244                          Hartlepool         805     All schools
#> 3245                          Hartlepool         805         Primary
#> 3246                          Hartlepool         805       Secondary
#> 3247                          Hartlepool         805         Special
#> 3248                       Middlesbrough         806     All schools
#> 3249                       Middlesbrough         806         Primary
#> 3250                       Middlesbrough         806       Secondary
#> 3251                       Middlesbrough         806         Special
#> 3252                Redcar and Cleveland         807     All schools
#> 3253                Redcar and Cleveland         807         Primary
#> 3254                Redcar and Cleveland         807       Secondary
#> 3255                Redcar and Cleveland         807         Special
#> 3256                    Stockton-on-Tees         808     All schools
#> 3257                    Stockton-on-Tees         808         Primary
#> 3258                    Stockton-on-Tees         808       Secondary
#> 3259                    Stockton-on-Tees         808         Special
#> 3260                          Darlington         841     All schools
#> 3261                          Darlington         841         Primary
#> 3262                          Darlington         841       Secondary
#> 3263                          Darlington         841         Special
#> 3264                       County Durham         840     All schools
#> 3265                       County Durham         840         Primary
#> 3266                       County Durham         840       Secondary
#> 3267                       County Durham         840         Special
#> 3268                      Northumberland         929     All schools
#> 3269                      Northumberland         929         Primary
#> 3270                      Northumberland         929       Secondary
#> 3271                      Northumberland         929         Special
#> 3272                 Newcastle upon Tyne         391     All schools
#> 3273                 Newcastle upon Tyne         391         Primary
#> 3274                 Newcastle upon Tyne         391       Secondary
#> 3275                 Newcastle upon Tyne         391         Special
#> 3276                      North Tyneside         392     All schools
#> 3277                      North Tyneside         392         Primary
#> 3278                      North Tyneside         392       Secondary
#> 3279                      North Tyneside         392         Special
#> 3280                      South Tyneside         393     All schools
#> 3281                      South Tyneside         393         Primary
#> 3282                      South Tyneside         393       Secondary
#> 3283                      South Tyneside         393         Special
#> 3284                          Sunderland         394     All schools
#> 3285                          Sunderland         394         Primary
#> 3286                          Sunderland         394       Secondary
#> 3287                          Sunderland         394         Special
#> 3288                           Gateshead         390     All schools
#> 3289                           Gateshead         390         Primary
#> 3290                           Gateshead         390       Secondary
#> 3291                           Gateshead         390         Special
#> 3292                                <NA>          NA     All schools
#> 3293                                <NA>          NA         Primary
#> 3294                                <NA>          NA       Secondary
#> 3295                                <NA>          NA         Special
#> 3296                              Halton         876     All schools
#> 3297                              Halton         876         Primary
#> 3298                              Halton         876       Secondary
#> 3299                              Halton         876         Special
#> 3300                          Warrington         877     All schools
#> 3301                          Warrington         877         Primary
#> 3302                          Warrington         877       Secondary
#> 3303                          Warrington         877         Special
#> 3304               Blackburn with Darwen         889     All schools
#> 3305               Blackburn with Darwen         889         Primary
#> 3306               Blackburn with Darwen         889       Secondary
#> 3307               Blackburn with Darwen         889         Special
#> 3308                           Blackpool         890     All schools
#> 3309                           Blackpool         890         Primary
#> 3310                           Blackpool         890       Secondary
#> 3311                           Blackpool         890         Special
#> 3312                       Cheshire East         895     All schools
#> 3313                       Cheshire East         895         Primary
#> 3314                       Cheshire East         895       Secondary
#> 3315                       Cheshire East         895         Special
#> 3316           Cheshire West and Chester         896     All schools
#> 3317           Cheshire West and Chester         896         Primary
#> 3318           Cheshire West and Chester         896       Secondary
#> 3319           Cheshire West and Chester         896         Special
#> 3320                          Cumberland         942     All schools
#> 3321                          Cumberland         942         Primary
#> 3322                          Cumberland         942       Secondary
#> 3323                          Cumberland         942         Special
#> 3324             Westmorland and Furness         943     All schools
#> 3325             Westmorland and Furness         943         Primary
#> 3326             Westmorland and Furness         943       Secondary
#> 3327             Westmorland and Furness         943         Special
#> 3328                              Bolton         350     All schools
#> 3329                              Bolton         350         Primary
#> 3330                              Bolton         350       Secondary
#> 3331                              Bolton         350         Special
#> 3332                                Bury         351     All schools
#> 3333                                Bury         351         Primary
#> 3334                                Bury         351       Secondary
#> 3335                                Bury         351         Special
#> 3336                          Manchester         352     All schools
#> 3337                          Manchester         352         Primary
#> 3338                          Manchester         352       Secondary
#> 3339                          Manchester         352         Special
#> 3340                              Oldham         353     All schools
#> 3341                              Oldham         353         Primary
#> 3342                              Oldham         353       Secondary
#> 3343                              Oldham         353         Special
#> 3344                            Rochdale         354     All schools
#> 3345                            Rochdale         354         Primary
#> 3346                            Rochdale         354       Secondary
#> 3347                            Rochdale         354         Special
#> 3348                             Salford         355     All schools
#> 3349                             Salford         355         Primary
#> 3350                             Salford         355       Secondary
#> 3351                             Salford         355         Special
#> 3352                           Stockport         356     All schools
#> 3353                           Stockport         356         Primary
#> 3354                           Stockport         356       Secondary
#> 3355                           Stockport         356         Special
#> 3356                            Tameside         357     All schools
#> 3357                            Tameside         357         Primary
#> 3358                            Tameside         357       Secondary
#> 3359                            Tameside         357         Special
#> 3360                            Trafford         358     All schools
#> 3361                            Trafford         358         Primary
#> 3362                            Trafford         358       Secondary
#> 3363                            Trafford         358         Special
#> 3364                               Wigan         359     All schools
#> 3365                               Wigan         359         Primary
#> 3366                               Wigan         359       Secondary
#> 3367                               Wigan         359         Special
#> 3368                            Knowsley         340     All schools
#> 3369                            Knowsley         340         Primary
#> 3370                            Knowsley         340       Secondary
#> 3371                            Knowsley         340         Special
#> 3372                           Liverpool         341     All schools
#> 3373                           Liverpool         341         Primary
#> 3374                           Liverpool         341       Secondary
#> 3375                           Liverpool         341         Special
#> 3376                          St. Helens         342     All schools
#> 3377                          St. Helens         342         Primary
#> 3378                          St. Helens         342       Secondary
#> 3379                          St. Helens         342         Special
#> 3380                              Sefton         343     All schools
#> 3381                              Sefton         343         Primary
#> 3382                              Sefton         343       Secondary
#> 3383                              Sefton         343         Special
#> 3384                              Wirral         344     All schools
#> 3385                              Wirral         344         Primary
#> 3386                              Wirral         344       Secondary
#> 3387                              Wirral         344         Special
#> 3388                          Lancashire         888     All schools
#> 3389                          Lancashire         888         Primary
#> 3390                          Lancashire         888       Secondary
#> 3391                          Lancashire         888         Special
#> 3392                                <NA>          NA     All schools
#> 3393                                <NA>          NA         Primary
#> 3394                                <NA>          NA       Secondary
#> 3395                                <NA>          NA         Special
#> 3396         Kingston upon Hull, City of         810     All schools
#> 3397         Kingston upon Hull, City of         810         Primary
#> 3398         Kingston upon Hull, City of         810       Secondary
#> 3399         Kingston upon Hull, City of         810         Special
#> 3400            East Riding of Yorkshire         811     All schools
#> 3401            East Riding of Yorkshire         811         Primary
#> 3402            East Riding of Yorkshire         811       Secondary
#> 3403            East Riding of Yorkshire         811         Special
#> 3404             North East Lincolnshire         812     All schools
#> 3405             North East Lincolnshire         812         Primary
#> 3406             North East Lincolnshire         812       Secondary
#> 3407             North East Lincolnshire         812         Special
#> 3408                  North Lincolnshire         813     All schools
#> 3409                  North Lincolnshire         813         Primary
#> 3410                  North Lincolnshire         813       Secondary
#> 3411                  North Lincolnshire         813         Special
#> 3412                                York         816     All schools
#> 3413                                York         816         Primary
#> 3414                                York         816       Secondary
#> 3415                                York         816         Special
#> 3416                     North Yorkshire         815     All schools
#> 3417                     North Yorkshire         815         Primary
#> 3418                     North Yorkshire         815       Secondary
#> 3419                     North Yorkshire         815         Special
#> 3420                            Barnsley         370     All schools
#> 3421                            Barnsley         370         Primary
#> 3422                            Barnsley         370       Secondary
#> 3423                            Barnsley         370         Special
#> 3424                           Doncaster         371     All schools
#> 3425                           Doncaster         371         Primary
#> 3426                           Doncaster         371       Secondary
#> 3427                           Doncaster         371         Special
#> 3428                           Rotherham         372     All schools
#> 3429                           Rotherham         372         Primary
#> 3430                           Rotherham         372       Secondary
#> 3431                           Rotherham         372         Special
#> 3432                           Sheffield         373     All schools
#> 3433                           Sheffield         373         Primary
#> 3434                           Sheffield         373       Secondary
#> 3435                           Sheffield         373         Special
#> 3436                            Bradford         380     All schools
#> 3437                            Bradford         380         Primary
#> 3438                            Bradford         380       Secondary
#> 3439                            Bradford         380         Special
#> 3440                          Calderdale         381     All schools
#> 3441                          Calderdale         381         Primary
#> 3442                          Calderdale         381       Secondary
#> 3443                          Calderdale         381         Special
#> 3444                            Kirklees         382     All schools
#> 3445                            Kirklees         382         Primary
#> 3446                            Kirklees         382       Secondary
#> 3447                            Kirklees         382         Special
#> 3448                               Leeds         383     All schools
#> 3449                               Leeds         383         Primary
#> 3450                               Leeds         383       Secondary
#> 3451                               Leeds         383         Special
#> 3452                           Wakefield         384     All schools
#> 3453                           Wakefield         384         Primary
#> 3454                           Wakefield         384       Secondary
#> 3455                           Wakefield         384         Special
#> 3456                                <NA>          NA     All schools
#> 3457                                <NA>          NA         Primary
#> 3458                                <NA>          NA       Secondary
#> 3459                                <NA>          NA         Special
#> 3460                               Derby         831     All schools
#> 3461                               Derby         831         Primary
#> 3462                               Derby         831       Secondary
#> 3463                               Derby         831         Special
#> 3464                           Leicester         856     All schools
#> 3465                           Leicester         856         Primary
#> 3466                           Leicester         856       Secondary
#> 3467                           Leicester         856         Special
#> 3468                             Rutland         857     All schools
#> 3469                             Rutland         857         Primary
#> 3470                             Rutland         857       Secondary
#> 3471                          Nottingham         892     All schools
#> 3472                          Nottingham         892         Primary
#> 3473                          Nottingham         892       Secondary
#> 3474                          Nottingham         892         Special
#> 3475              North Northamptonshire         940     All schools
#> 3476              North Northamptonshire         940         Primary
#> 3477              North Northamptonshire         940       Secondary
#> 3478              North Northamptonshire         940         Special
#> 3479               West Northamptonshire         941     All schools
#> 3480               West Northamptonshire         941         Primary
#> 3481               West Northamptonshire         941       Secondary
#> 3482               West Northamptonshire         941         Special
#> 3483                          Derbyshire         830     All schools
#> 3484                          Derbyshire         830         Primary
#> 3485                          Derbyshire         830       Secondary
#> 3486                          Derbyshire         830         Special
#> 3487                      Leicestershire         855     All schools
#> 3488                      Leicestershire         855         Primary
#> 3489                      Leicestershire         855       Secondary
#> 3490                      Leicestershire         855         Special
#> 3491                        Lincolnshire         925     All schools
#> 3492                        Lincolnshire         925         Primary
#> 3493                        Lincolnshire         925       Secondary
#> 3494                        Lincolnshire         925         Special
#> 3495                     Nottinghamshire         891     All schools
#> 3496                     Nottinghamshire         891         Primary
#> 3497                     Nottinghamshire         891       Secondary
#> 3498                     Nottinghamshire         891         Special
#> 3499                                <NA>          NA     All schools
#> 3500                                <NA>          NA         Primary
#> 3501                                <NA>          NA       Secondary
#> 3502                                <NA>          NA         Special
#> 3503            Herefordshire, County of         884     All schools
#> 3504            Herefordshire, County of         884         Primary
#> 3505            Herefordshire, County of         884       Secondary
#> 3506            Herefordshire, County of         884         Special
#> 3507                  Telford and Wrekin         894     All schools
#> 3508                  Telford and Wrekin         894         Primary
#> 3509                  Telford and Wrekin         894       Secondary
#> 3510                  Telford and Wrekin         894         Special
#> 3511                      Stoke-on-Trent         861     All schools
#> 3512                      Stoke-on-Trent         861         Primary
#> 3513                      Stoke-on-Trent         861       Secondary
#> 3514                      Stoke-on-Trent         861         Special
#> 3515                          Shropshire         893     All schools
#> 3516                          Shropshire         893         Primary
#> 3517                          Shropshire         893       Secondary
#> 3518                          Shropshire         893         Special
#> 3519                          Birmingham         330     All schools
#> 3520                          Birmingham         330         Primary
#> 3521                          Birmingham         330       Secondary
#> 3522                          Birmingham         330         Special
#> 3523                            Coventry         331     All schools
#> 3524                            Coventry         331         Primary
#> 3525                            Coventry         331       Secondary
#> 3526                            Coventry         331         Special
#> 3527                              Dudley         332     All schools
#> 3528                              Dudley         332         Primary
#> 3529                              Dudley         332       Secondary
#> 3530                              Dudley         332         Special
#> 3531                            Sandwell         333     All schools
#> 3532                            Sandwell         333         Primary
#> 3533                            Sandwell         333       Secondary
#> 3534                            Sandwell         333         Special
#> 3535                            Solihull         334     All schools
#> 3536                            Solihull         334         Primary
#> 3537                            Solihull         334       Secondary
#> 3538                            Solihull         334         Special
#> 3539                             Walsall         335     All schools
#> 3540                             Walsall         335         Primary
#> 3541                             Walsall         335       Secondary
#> 3542                             Walsall         335         Special
#> 3543                       Wolverhampton         336     All schools
#> 3544                       Wolverhampton         336         Primary
#> 3545                       Wolverhampton         336       Secondary
#> 3546                       Wolverhampton         336         Special
#> 3547                       Staffordshire         860     All schools
#> 3548                       Staffordshire         860         Primary
#> 3549                       Staffordshire         860       Secondary
#> 3550                       Staffordshire         860         Special
#> 3551                        Warwickshire         937     All schools
#> 3552                        Warwickshire         937         Primary
#> 3553                        Warwickshire         937       Secondary
#> 3554                        Warwickshire         937         Special
#> 3555                      Worcestershire         885     All schools
#> 3556                      Worcestershire         885         Primary
#> 3557                      Worcestershire         885       Secondary
#> 3558                      Worcestershire         885         Special
#> 3559                                <NA>          NA     All schools
#> 3560                                <NA>          NA         Primary
#> 3561                                <NA>          NA       Secondary
#> 3562                                <NA>          NA         Special
#> 3563                        Peterborough         874     All schools
#> 3564                        Peterborough         874         Primary
#> 3565                        Peterborough         874       Secondary
#> 3566                        Peterborough         874         Special
#> 3567                               Luton         821     All schools
#> 3568                               Luton         821         Primary
#> 3569                               Luton         821       Secondary
#> 3570                               Luton         821         Special
#> 3571                     Southend-on-Sea         882     All schools
#> 3572                     Southend-on-Sea         882         Primary
#> 3573                     Southend-on-Sea         882       Secondary
#> 3574                     Southend-on-Sea         882         Special
#> 3575                            Thurrock         883     All schools
#> 3576                            Thurrock         883         Primary
#> 3577                            Thurrock         883       Secondary
#> 3578                            Thurrock         883         Special
#> 3579                             Bedford         822     All schools
#> 3580                             Bedford         822         Primary
#> 3581                             Bedford         822       Secondary
#> 3582                             Bedford         822         Special
#> 3583                Central Bedfordshire         823     All schools
#> 3584                Central Bedfordshire         823         Primary
#> 3585                Central Bedfordshire         823       Secondary
#> 3586                Central Bedfordshire         823         Special
#> 3587                      Cambridgeshire         873     All schools
#> 3588                      Cambridgeshire         873         Primary
#> 3589                      Cambridgeshire         873       Secondary
#> 3590                      Cambridgeshire         873         Special
#> 3591                               Essex         881     All schools
#> 3592                               Essex         881         Primary
#> 3593                               Essex         881       Secondary
#> 3594                               Essex         881         Special
#> 3595                       Hertfordshire         919     All schools
#> 3596                       Hertfordshire         919         Primary
#> 3597                       Hertfordshire         919       Secondary
#> 3598                       Hertfordshire         919         Special
#> 3599                             Norfolk         926     All schools
#> 3600                             Norfolk         926         Primary
#> 3601                             Norfolk         926       Secondary
#> 3602                             Norfolk         926         Special
#> 3603                             Suffolk         935     All schools
#> 3604                             Suffolk         935         Primary
#> 3605                             Suffolk         935       Secondary
#> 3606                             Suffolk         935         Special
#> 3607                                <NA>          NA     All schools
#> 3608                                <NA>          NA         Primary
#> 3609                                <NA>          NA       Secondary
#> 3610                                <NA>          NA         Special
#> 3611                      City of London         201     All schools
#> 3612                      City of London         201         Primary
#> 3613                Barking and Dagenham         301     All schools
#> 3614                Barking and Dagenham         301         Primary
#> 3615                Barking and Dagenham         301       Secondary
#> 3616                Barking and Dagenham         301         Special
#> 3617                              Barnet         302     All schools
#> 3618                              Barnet         302         Primary
#> 3619                              Barnet         302       Secondary
#> 3620                              Barnet         302         Special
#> 3621                              Bexley         303     All schools
#> 3622                              Bexley         303         Primary
#> 3623                              Bexley         303       Secondary
#> 3624                              Bexley         303         Special
#> 3625                               Brent         304     All schools
#> 3626                               Brent         304         Primary
#> 3627                               Brent         304       Secondary
#> 3628                               Brent         304         Special
#> 3629                             Bromley         305     All schools
#> 3630                             Bromley         305         Primary
#> 3631                             Bromley         305       Secondary
#> 3632                             Bromley         305         Special
#> 3633                              Camden         202     All schools
#> 3634                              Camden         202         Primary
#> 3635                              Camden         202       Secondary
#> 3636                              Camden         202         Special
#> 3637                             Croydon         306     All schools
#> 3638                             Croydon         306         Primary
#> 3639                             Croydon         306       Secondary
#> 3640                             Croydon         306         Special
#> 3641                              Ealing         307     All schools
#> 3642                              Ealing         307         Primary
#> 3643                              Ealing         307       Secondary
#> 3644                              Ealing         307         Special
#> 3645                             Enfield         308     All schools
#> 3646                             Enfield         308         Primary
#> 3647                             Enfield         308       Secondary
#> 3648                             Enfield         308         Special
#> 3649                           Greenwich         203     All schools
#> 3650                           Greenwich         203         Primary
#> 3651                           Greenwich         203       Secondary
#> 3652                           Greenwich         203         Special
#> 3653                             Hackney         204     All schools
#> 3654                             Hackney         204         Primary
#> 3655                             Hackney         204       Secondary
#> 3656                             Hackney         204         Special
#> 3657              Hammersmith and Fulham         205     All schools
#> 3658              Hammersmith and Fulham         205         Primary
#> 3659              Hammersmith and Fulham         205       Secondary
#> 3660              Hammersmith and Fulham         205         Special
#> 3661                            Haringey         309     All schools
#> 3662                            Haringey         309         Primary
#> 3663                            Haringey         309       Secondary
#> 3664                            Haringey         309         Special
#> 3665                              Harrow         310     All schools
#> 3666                              Harrow         310         Primary
#> 3667                              Harrow         310       Secondary
#> 3668                              Harrow         310         Special
#> 3669                            Havering         311     All schools
#> 3670                            Havering         311         Primary
#> 3671                            Havering         311       Secondary
#> 3672                            Havering         311         Special
#> 3673                          Hillingdon         312     All schools
#> 3674                          Hillingdon         312         Primary
#> 3675                          Hillingdon         312       Secondary
#> 3676                          Hillingdon         312         Special
#> 3677                            Hounslow         313     All schools
#> 3678                            Hounslow         313         Primary
#> 3679                            Hounslow         313       Secondary
#> 3680                            Hounslow         313         Special
#> 3681                           Islington         206     All schools
#> 3682                           Islington         206         Primary
#> 3683                           Islington         206       Secondary
#> 3684                           Islington         206         Special
#> 3685              Kensington and Chelsea         207     All schools
#> 3686              Kensington and Chelsea         207         Primary
#> 3687              Kensington and Chelsea         207       Secondary
#> 3688              Kensington and Chelsea         207         Special
#> 3689                Kingston upon Thames         314     All schools
#> 3690                Kingston upon Thames         314         Primary
#> 3691                Kingston upon Thames         314       Secondary
#> 3692                Kingston upon Thames         314         Special
#> 3693                             Lambeth         208     All schools
#> 3694                             Lambeth         208         Primary
#> 3695                             Lambeth         208       Secondary
#> 3696                             Lambeth         208         Special
#> 3697                            Lewisham         209     All schools
#> 3698                            Lewisham         209         Primary
#> 3699                            Lewisham         209       Secondary
#> 3700                            Lewisham         209         Special
#> 3701                              Merton         315     All schools
#> 3702                              Merton         315         Primary
#> 3703                              Merton         315       Secondary
#> 3704                              Merton         315         Special
#> 3705                              Newham         316     All schools
#> 3706                              Newham         316         Primary
#> 3707                              Newham         316       Secondary
#> 3708                              Newham         316         Special
#> 3709                           Redbridge         317     All schools
#> 3710                           Redbridge         317         Primary
#> 3711                           Redbridge         317       Secondary
#> 3712                           Redbridge         317         Special
#> 3713                Richmond upon Thames         318     All schools
#> 3714                Richmond upon Thames         318         Primary
#> 3715                Richmond upon Thames         318       Secondary
#> 3716                Richmond upon Thames         318         Special
#> 3717                           Southwark         210     All schools
#> 3718                           Southwark         210         Primary
#> 3719                           Southwark         210       Secondary
#> 3720                           Southwark         210         Special
#> 3721                              Sutton         319     All schools
#> 3722                              Sutton         319         Primary
#> 3723                              Sutton         319       Secondary
#> 3724                              Sutton         319         Special
#> 3725                       Tower Hamlets         211     All schools
#> 3726                       Tower Hamlets         211         Primary
#> 3727                       Tower Hamlets         211       Secondary
#> 3728                       Tower Hamlets         211         Special
#> 3729                      Waltham Forest         320     All schools
#> 3730                      Waltham Forest         320         Primary
#> 3731                      Waltham Forest         320       Secondary
#> 3732                      Waltham Forest         320         Special
#> 3733                          Wandsworth         212     All schools
#> 3734                          Wandsworth         212         Primary
#> 3735                          Wandsworth         212       Secondary
#> 3736                          Wandsworth         212         Special
#> 3737                         Westminster         213     All schools
#> 3738                         Westminster         213         Primary
#> 3739                         Westminster         213       Secondary
#> 3740                         Westminster         213         Special
#> 3741                                <NA>          NA     All schools
#> 3742                                <NA>          NA         Primary
#> 3743                                <NA>          NA       Secondary
#> 3744                                <NA>          NA         Special
#> 3745                              Medway         887     All schools
#> 3746                              Medway         887         Primary
#> 3747                              Medway         887       Secondary
#> 3748                              Medway         887         Special
#> 3749                    Bracknell Forest         867     All schools
#> 3750                    Bracknell Forest         867         Primary
#> 3751                    Bracknell Forest         867       Secondary
#> 3752                    Bracknell Forest         867         Special
#> 3753                      West Berkshire         869     All schools
#> 3754                      West Berkshire         869         Primary
#> 3755                      West Berkshire         869       Secondary
#> 3756                      West Berkshire         869         Special
#> 3757                             Reading         870     All schools
#> 3758                             Reading         870         Primary
#> 3759                             Reading         870       Secondary
#> 3760                             Reading         870         Special
#> 3761                              Slough         871     All schools
#> 3762                              Slough         871         Primary
#> 3763                              Slough         871       Secondary
#> 3764                              Slough         871         Special
#> 3765              Windsor and Maidenhead         868     All schools
#> 3766              Windsor and Maidenhead         868         Primary
#> 3767              Windsor and Maidenhead         868       Secondary
#> 3768              Windsor and Maidenhead         868         Special
#> 3769                           Wokingham         872     All schools
#> 3770                           Wokingham         872         Primary
#> 3771                           Wokingham         872       Secondary
#> 3772                           Wokingham         872         Special
#> 3773                       Milton Keynes         826     All schools
#> 3774                       Milton Keynes         826         Primary
#> 3775                       Milton Keynes         826       Secondary
#> 3776                       Milton Keynes         826         Special
#> 3777                   Brighton and Hove         846     All schools
#> 3778                   Brighton and Hove         846         Primary
#> 3779                   Brighton and Hove         846       Secondary
#> 3780                   Brighton and Hove         846         Special
#> 3781                          Portsmouth         851     All schools
#> 3782                          Portsmouth         851         Primary
#> 3783                          Portsmouth         851       Secondary
#> 3784                          Portsmouth         851         Special
#> 3785                         Southampton         852     All schools
#> 3786                         Southampton         852         Primary
#> 3787                         Southampton         852       Secondary
#> 3788                         Southampton         852         Special
#> 3789                       Isle of Wight         921     All schools
#> 3790                       Isle of Wight         921         Primary
#> 3791                       Isle of Wight         921       Secondary
#> 3792                       Isle of Wight         921         Special
#> 3793                     Buckinghamshire         825     All schools
#> 3794                     Buckinghamshire         825         Primary
#> 3795                     Buckinghamshire         825       Secondary
#> 3796                     Buckinghamshire         825         Special
#> 3797                         East Sussex         845     All schools
#> 3798                         East Sussex         845         Primary
#> 3799                         East Sussex         845       Secondary
#> 3800                         East Sussex         845         Special
#> 3801                           Hampshire         850     All schools
#> 3802                           Hampshire         850         Primary
#> 3803                           Hampshire         850       Secondary
#> 3804                           Hampshire         850         Special
#> 3805                                Kent         886     All schools
#> 3806                                Kent         886         Primary
#> 3807                                Kent         886       Secondary
#> 3808                                Kent         886         Special
#> 3809                         Oxfordshire         931     All schools
#> 3810                         Oxfordshire         931         Primary
#> 3811                         Oxfordshire         931       Secondary
#> 3812                         Oxfordshire         931         Special
#> 3813                              Surrey         936     All schools
#> 3814                              Surrey         936         Primary
#> 3815                              Surrey         936       Secondary
#> 3816                              Surrey         936         Special
#> 3817                         West Sussex         938     All schools
#> 3818                         West Sussex         938         Primary
#> 3819                         West Sussex         938       Secondary
#> 3820                         West Sussex         938         Special
#> 3821                                <NA>          NA     All schools
#> 3822                                <NA>          NA         Primary
#> 3823                                <NA>          NA       Secondary
#> 3824                                <NA>          NA         Special
#> 3825        Bath and North East Somerset         800     All schools
#> 3826        Bath and North East Somerset         800         Primary
#> 3827        Bath and North East Somerset         800       Secondary
#> 3828        Bath and North East Somerset         800         Special
#> 3829                    Bristol, City of         801     All schools
#> 3830                    Bristol, City of         801         Primary
#> 3831                    Bristol, City of         801       Secondary
#> 3832                    Bristol, City of         801         Special
#> 3833                      North Somerset         802     All schools
#> 3834                      North Somerset         802         Primary
#> 3835                      North Somerset         802       Secondary
#> 3836                      North Somerset         802         Special
#> 3837               South Gloucestershire         803     All schools
#> 3838               South Gloucestershire         803         Primary
#> 3839               South Gloucestershire         803       Secondary
#> 3840               South Gloucestershire         803         Special
#> 3841                            Plymouth         879     All schools
#> 3842                            Plymouth         879         Primary
#> 3843                            Plymouth         879       Secondary
#> 3844                            Plymouth         879         Special
#> 3845                              Torbay         880     All schools
#> 3846                              Torbay         880         Primary
#> 3847                              Torbay         880       Secondary
#> 3848                              Torbay         880         Special
#> 3849                             Swindon         866     All schools
#> 3850                             Swindon         866         Primary
#> 3851                             Swindon         866       Secondary
#> 3852                             Swindon         866         Special
#> 3853                            Cornwall         908     All schools
#> 3854                            Cornwall         908         Primary
#> 3855                            Cornwall         908       Secondary
#> 3856                            Cornwall         908         Special
#> 3857                     Isles of Scilly         420     All schools
#> 3858                     Isles of Scilly         420       Secondary
#> 3859                           Wiltshire         865     All schools
#> 3860                           Wiltshire         865         Primary
#> 3861                           Wiltshire         865       Secondary
#> 3862                           Wiltshire         865         Special
#> 3863 Bournemouth, Christchurch and Poole         839     All schools
#> 3864 Bournemouth, Christchurch and Poole         839         Primary
#> 3865 Bournemouth, Christchurch and Poole         839       Secondary
#> 3866 Bournemouth, Christchurch and Poole         839         Special
#> 3867                              Dorset         838     All schools
#> 3868                              Dorset         838         Primary
#> 3869                              Dorset         838       Secondary
#> 3870                              Dorset         838         Special
#> 3871                            Somerset         933     All schools
#> 3872                            Somerset         933         Primary
#> 3873                            Somerset         933       Secondary
#> 3874                            Somerset         933         Special
#> 3875                               Devon         878     All schools
#> 3876                               Devon         878         Primary
#> 3877                               Devon         878       Secondary
#> 3878                               Devon         878         Special
#> 3879                     Gloucestershire         916     All schools
#> 3880                     Gloucestershire         916         Primary
#> 3881                     Gloucestershire         916       Secondary
#> 3882                     Gloucestershire         916         Special
#> 3883                                <NA>          NA     All schools
#> 3884                                <NA>          NA         Primary
#> 3885                                <NA>          NA       Secondary
#> 3886                                <NA>          NA         Special
#> 3887                                <NA>          NA     All schools
#> 3888                                <NA>          NA         Primary
#> 3889                                <NA>          NA       Secondary
#> 3890                                <NA>          NA         Special
#> 3891                          Hartlepool         805     All schools
#> 3892                          Hartlepool         805         Primary
#> 3893                          Hartlepool         805       Secondary
#> 3894                          Hartlepool         805         Special
#> 3895                       Middlesbrough         806     All schools
#> 3896                       Middlesbrough         806         Primary
#> 3897                       Middlesbrough         806       Secondary
#> 3898                       Middlesbrough         806         Special
#> 3899                Redcar and Cleveland         807     All schools
#> 3900                Redcar and Cleveland         807         Primary
#> 3901                Redcar and Cleveland         807       Secondary
#> 3902                Redcar and Cleveland         807         Special
#> 3903                    Stockton-on-Tees         808     All schools
#> 3904                    Stockton-on-Tees         808         Primary
#> 3905                    Stockton-on-Tees         808       Secondary
#> 3906                    Stockton-on-Tees         808         Special
#> 3907                          Darlington         841     All schools
#> 3908                          Darlington         841         Primary
#> 3909                          Darlington         841       Secondary
#> 3910                          Darlington         841         Special
#> 3911                       County Durham         840     All schools
#> 3912                       County Durham         840         Primary
#> 3913                       County Durham         840       Secondary
#> 3914                       County Durham         840         Special
#> 3915                      Northumberland         929     All schools
#> 3916                      Northumberland         929         Primary
#> 3917                      Northumberland         929       Secondary
#> 3918                      Northumberland         929         Special
#> 3919                 Newcastle upon Tyne         391     All schools
#> 3920                 Newcastle upon Tyne         391         Primary
#> 3921                 Newcastle upon Tyne         391       Secondary
#> 3922                 Newcastle upon Tyne         391         Special
#> 3923                      North Tyneside         392     All schools
#> 3924                      North Tyneside         392         Primary
#> 3925                      North Tyneside         392       Secondary
#> 3926                      North Tyneside         392         Special
#> 3927                      South Tyneside         393     All schools
#> 3928                      South Tyneside         393         Primary
#> 3929                      South Tyneside         393       Secondary
#> 3930                      South Tyneside         393         Special
#> 3931                          Sunderland         394     All schools
#> 3932                          Sunderland         394         Primary
#> 3933                          Sunderland         394       Secondary
#> 3934                          Sunderland         394         Special
#> 3935                           Gateshead         390     All schools
#> 3936                           Gateshead         390         Primary
#> 3937                           Gateshead         390       Secondary
#> 3938                           Gateshead         390         Special
#> 3939                                <NA>          NA     All schools
#> 3940                                <NA>          NA         Primary
#> 3941                                <NA>          NA       Secondary
#> 3942                                <NA>          NA         Special
#> 3943                              Halton         876     All schools
#> 3944                              Halton         876         Primary
#> 3945                              Halton         876       Secondary
#> 3946                              Halton         876         Special
#> 3947                          Warrington         877     All schools
#> 3948                          Warrington         877         Primary
#> 3949                          Warrington         877       Secondary
#> 3950                          Warrington         877         Special
#> 3951               Blackburn with Darwen         889     All schools
#> 3952               Blackburn with Darwen         889         Primary
#> 3953               Blackburn with Darwen         889       Secondary
#> 3954               Blackburn with Darwen         889         Special
#> 3955                           Blackpool         890     All schools
#> 3956                           Blackpool         890         Primary
#> 3957                           Blackpool         890       Secondary
#> 3958                           Blackpool         890         Special
#> 3959                       Cheshire East         895     All schools
#> 3960                       Cheshire East         895         Primary
#> 3961                       Cheshire East         895       Secondary
#> 3962                       Cheshire East         895         Special
#> 3963           Cheshire West and Chester         896     All schools
#> 3964           Cheshire West and Chester         896         Primary
#> 3965           Cheshire West and Chester         896       Secondary
#> 3966           Cheshire West and Chester         896         Special
#> 3967                          Cumberland         942     All schools
#> 3968                          Cumberland         942         Primary
#> 3969                          Cumberland         942       Secondary
#> 3970                          Cumberland         942         Special
#> 3971             Westmorland and Furness         943     All schools
#> 3972             Westmorland and Furness         943         Primary
#> 3973             Westmorland and Furness         943       Secondary
#> 3974             Westmorland and Furness         943         Special
#> 3975                              Bolton         350     All schools
#> 3976                              Bolton         350         Primary
#> 3977                              Bolton         350       Secondary
#> 3978                              Bolton         350         Special
#> 3979                                Bury         351     All schools
#> 3980                                Bury         351         Primary
#> 3981                                Bury         351       Secondary
#> 3982                                Bury         351         Special
#> 3983                          Manchester         352     All schools
#> 3984                          Manchester         352         Primary
#> 3985                          Manchester         352       Secondary
#> 3986                          Manchester         352         Special
#> 3987                              Oldham         353     All schools
#> 3988                              Oldham         353         Primary
#> 3989                              Oldham         353       Secondary
#> 3990                              Oldham         353         Special
#> 3991                            Rochdale         354     All schools
#> 3992                            Rochdale         354         Primary
#> 3993                            Rochdale         354       Secondary
#> 3994                            Rochdale         354         Special
#> 3995                             Salford         355     All schools
#> 3996                             Salford         355         Primary
#> 3997                             Salford         355       Secondary
#> 3998                             Salford         355         Special
#> 3999                           Stockport         356     All schools
#> 4000                           Stockport         356         Primary
#> 4001                           Stockport         356       Secondary
#> 4002                           Stockport         356         Special
#> 4003                            Tameside         357     All schools
#> 4004                            Tameside         357         Primary
#> 4005                            Tameside         357       Secondary
#> 4006                            Tameside         357         Special
#> 4007                            Trafford         358     All schools
#> 4008                            Trafford         358         Primary
#> 4009                            Trafford         358       Secondary
#> 4010                            Trafford         358         Special
#> 4011                               Wigan         359     All schools
#> 4012                               Wigan         359         Primary
#> 4013                               Wigan         359       Secondary
#> 4014                               Wigan         359         Special
#> 4015                            Knowsley         340     All schools
#> 4016                            Knowsley         340         Primary
#> 4017                            Knowsley         340       Secondary
#> 4018                            Knowsley         340         Special
#> 4019                           Liverpool         341     All schools
#> 4020                           Liverpool         341         Primary
#> 4021                           Liverpool         341       Secondary
#> 4022                           Liverpool         341         Special
#> 4023                          St. Helens         342     All schools
#> 4024                          St. Helens         342         Primary
#> 4025                          St. Helens         342       Secondary
#> 4026                          St. Helens         342         Special
#> 4027                              Sefton         343     All schools
#> 4028                              Sefton         343         Primary
#> 4029                              Sefton         343       Secondary
#> 4030                              Sefton         343         Special
#> 4031                              Wirral         344     All schools
#> 4032                              Wirral         344         Primary
#> 4033                              Wirral         344       Secondary
#> 4034                              Wirral         344         Special
#> 4035                          Lancashire         888     All schools
#> 4036                          Lancashire         888         Primary
#> 4037                          Lancashire         888       Secondary
#> 4038                          Lancashire         888         Special
#> 4039                                <NA>          NA     All schools
#> 4040                                <NA>          NA         Primary
#> 4041                                <NA>          NA       Secondary
#> 4042                                <NA>          NA         Special
#> 4043         Kingston upon Hull, City of         810     All schools
#> 4044         Kingston upon Hull, City of         810         Primary
#> 4045         Kingston upon Hull, City of         810       Secondary
#> 4046         Kingston upon Hull, City of         810         Special
#> 4047            East Riding of Yorkshire         811     All schools
#> 4048            East Riding of Yorkshire         811         Primary
#> 4049            East Riding of Yorkshire         811       Secondary
#> 4050            East Riding of Yorkshire         811         Special
#> 4051             North East Lincolnshire         812     All schools
#> 4052             North East Lincolnshire         812         Primary
#> 4053             North East Lincolnshire         812       Secondary
#> 4054             North East Lincolnshire         812         Special
#> 4055                  North Lincolnshire         813     All schools
#> 4056                  North Lincolnshire         813         Primary
#> 4057                  North Lincolnshire         813       Secondary
#> 4058                  North Lincolnshire         813         Special
#> 4059                                York         816     All schools
#> 4060                                York         816         Primary
#> 4061                                York         816       Secondary
#> 4062                                York         816         Special
#> 4063                     North Yorkshire         815     All schools
#> 4064                     North Yorkshire         815         Primary
#> 4065                     North Yorkshire         815       Secondary
#> 4066                     North Yorkshire         815         Special
#> 4067                            Barnsley         370     All schools
#> 4068                            Barnsley         370         Primary
#> 4069                            Barnsley         370       Secondary
#> 4070                            Barnsley         370         Special
#> 4071                           Doncaster         371     All schools
#> 4072                           Doncaster         371         Primary
#> 4073                           Doncaster         371       Secondary
#> 4074                           Doncaster         371         Special
#> 4075                           Rotherham         372     All schools
#> 4076                           Rotherham         372         Primary
#> 4077                           Rotherham         372       Secondary
#> 4078                           Rotherham         372         Special
#> 4079                           Sheffield         373     All schools
#> 4080                           Sheffield         373         Primary
#> 4081                           Sheffield         373       Secondary
#> 4082                           Sheffield         373         Special
#> 4083                            Bradford         380     All schools
#> 4084                            Bradford         380         Primary
#> 4085                            Bradford         380       Secondary
#> 4086                            Bradford         380         Special
#> 4087                          Calderdale         381     All schools
#> 4088                          Calderdale         381         Primary
#> 4089                          Calderdale         381       Secondary
#> 4090                          Calderdale         381         Special
#> 4091                            Kirklees         382     All schools
#> 4092                            Kirklees         382         Primary
#> 4093                            Kirklees         382       Secondary
#> 4094                            Kirklees         382         Special
#> 4095                               Leeds         383     All schools
#> 4096                               Leeds         383         Primary
#> 4097                               Leeds         383       Secondary
#> 4098                               Leeds         383         Special
#> 4099                           Wakefield         384     All schools
#> 4100                           Wakefield         384         Primary
#> 4101                           Wakefield         384       Secondary
#> 4102                           Wakefield         384         Special
#> 4103                                <NA>          NA     All schools
#> 4104                                <NA>          NA         Primary
#> 4105                                <NA>          NA       Secondary
#> 4106                                <NA>          NA         Special
#> 4107                               Derby         831     All schools
#> 4108                               Derby         831         Primary
#> 4109                               Derby         831       Secondary
#> 4110                               Derby         831         Special
#> 4111                           Leicester         856     All schools
#> 4112                           Leicester         856         Primary
#> 4113                           Leicester         856       Secondary
#> 4114                           Leicester         856         Special
#> 4115                             Rutland         857     All schools
#> 4116                             Rutland         857         Primary
#> 4117                             Rutland         857       Secondary
#> 4118                          Nottingham         892     All schools
#> 4119                          Nottingham         892         Primary
#> 4120                          Nottingham         892       Secondary
#> 4121                          Nottingham         892         Special
#> 4122              North Northamptonshire         940     All schools
#> 4123              North Northamptonshire         940         Primary
#> 4124              North Northamptonshire         940       Secondary
#> 4125              North Northamptonshire         940         Special
#> 4126               West Northamptonshire         941     All schools
#> 4127               West Northamptonshire         941         Primary
#> 4128               West Northamptonshire         941       Secondary
#> 4129               West Northamptonshire         941         Special
#> 4130                          Derbyshire         830     All schools
#> 4131                          Derbyshire         830         Primary
#> 4132                          Derbyshire         830       Secondary
#> 4133                          Derbyshire         830         Special
#> 4134                      Leicestershire         855     All schools
#> 4135                      Leicestershire         855         Primary
#> 4136                      Leicestershire         855       Secondary
#> 4137                      Leicestershire         855         Special
#> 4138                        Lincolnshire         925     All schools
#> 4139                        Lincolnshire         925         Primary
#> 4140                        Lincolnshire         925       Secondary
#> 4141                        Lincolnshire         925         Special
#> 4142                     Nottinghamshire         891     All schools
#> 4143                     Nottinghamshire         891         Primary
#> 4144                     Nottinghamshire         891       Secondary
#> 4145                     Nottinghamshire         891         Special
#> 4146                                <NA>          NA     All schools
#> 4147                                <NA>          NA         Primary
#> 4148                                <NA>          NA       Secondary
#> 4149                                <NA>          NA         Special
#> 4150            Herefordshire, County of         884     All schools
#> 4151            Herefordshire, County of         884         Primary
#> 4152            Herefordshire, County of         884       Secondary
#> 4153            Herefordshire, County of         884         Special
#> 4154                  Telford and Wrekin         894     All schools
#> 4155                  Telford and Wrekin         894         Primary
#> 4156                  Telford and Wrekin         894       Secondary
#> 4157                  Telford and Wrekin         894         Special
#> 4158                      Stoke-on-Trent         861     All schools
#> 4159                      Stoke-on-Trent         861         Primary
#> 4160                      Stoke-on-Trent         861       Secondary
#> 4161                      Stoke-on-Trent         861         Special
#> 4162                          Shropshire         893     All schools
#> 4163                          Shropshire         893         Primary
#> 4164                          Shropshire         893       Secondary
#> 4165                          Shropshire         893         Special
#> 4166                          Birmingham         330     All schools
#> 4167                          Birmingham         330         Primary
#> 4168                          Birmingham         330       Secondary
#> 4169                          Birmingham         330         Special
#> 4170                            Coventry         331     All schools
#> 4171                            Coventry         331         Primary
#> 4172                            Coventry         331       Secondary
#> 4173                            Coventry         331         Special
#> 4174                              Dudley         332     All schools
#> 4175                              Dudley         332         Primary
#> 4176                              Dudley         332       Secondary
#> 4177                              Dudley         332         Special
#> 4178                            Sandwell         333     All schools
#> 4179                            Sandwell         333         Primary
#> 4180                            Sandwell         333       Secondary
#> 4181                            Sandwell         333         Special
#> 4182                            Solihull         334     All schools
#> 4183                            Solihull         334         Primary
#> 4184                            Solihull         334       Secondary
#> 4185                            Solihull         334         Special
#> 4186                             Walsall         335     All schools
#> 4187                             Walsall         335         Primary
#> 4188                             Walsall         335       Secondary
#> 4189                             Walsall         335         Special
#> 4190                       Wolverhampton         336     All schools
#> 4191                       Wolverhampton         336         Primary
#> 4192                       Wolverhampton         336       Secondary
#> 4193                       Wolverhampton         336         Special
#> 4194                       Staffordshire         860     All schools
#> 4195                       Staffordshire         860         Primary
#> 4196                       Staffordshire         860       Secondary
#> 4197                       Staffordshire         860         Special
#> 4198                        Warwickshire         937     All schools
#> 4199                        Warwickshire         937         Primary
#> 4200                        Warwickshire         937       Secondary
#> 4201                        Warwickshire         937         Special
#> 4202                      Worcestershire         885     All schools
#> 4203                      Worcestershire         885         Primary
#> 4204                      Worcestershire         885       Secondary
#> 4205                      Worcestershire         885         Special
#> 4206                                <NA>          NA     All schools
#> 4207                                <NA>          NA         Primary
#> 4208                                <NA>          NA       Secondary
#> 4209                                <NA>          NA         Special
#> 4210                        Peterborough         874     All schools
#> 4211                        Peterborough         874         Primary
#> 4212                        Peterborough         874       Secondary
#> 4213                        Peterborough         874         Special
#> 4214                               Luton         821     All schools
#> 4215                               Luton         821         Primary
#> 4216                               Luton         821       Secondary
#> 4217                               Luton         821         Special
#> 4218                     Southend-on-Sea         882     All schools
#> 4219                     Southend-on-Sea         882         Primary
#> 4220                     Southend-on-Sea         882       Secondary
#> 4221                     Southend-on-Sea         882         Special
#> 4222                            Thurrock         883     All schools
#> 4223                            Thurrock         883         Primary
#> 4224                            Thurrock         883       Secondary
#> 4225                            Thurrock         883         Special
#> 4226                             Bedford         822     All schools
#> 4227                             Bedford         822         Primary
#> 4228                             Bedford         822       Secondary
#> 4229                             Bedford         822         Special
#> 4230                Central Bedfordshire         823     All schools
#> 4231                Central Bedfordshire         823         Primary
#> 4232                Central Bedfordshire         823       Secondary
#> 4233                Central Bedfordshire         823         Special
#> 4234                      Cambridgeshire         873     All schools
#> 4235                      Cambridgeshire         873         Primary
#> 4236                      Cambridgeshire         873       Secondary
#> 4237                      Cambridgeshire         873         Special
#> 4238                               Essex         881     All schools
#> 4239                               Essex         881         Primary
#> 4240                               Essex         881       Secondary
#> 4241                               Essex         881         Special
#> 4242                       Hertfordshire         919     All schools
#> 4243                       Hertfordshire         919         Primary
#> 4244                       Hertfordshire         919       Secondary
#> 4245                       Hertfordshire         919         Special
#> 4246                             Norfolk         926     All schools
#> 4247                             Norfolk         926         Primary
#> 4248                             Norfolk         926       Secondary
#> 4249                             Norfolk         926         Special
#> 4250                             Suffolk         935     All schools
#> 4251                             Suffolk         935         Primary
#> 4252                             Suffolk         935       Secondary
#> 4253                             Suffolk         935         Special
#> 4254                                <NA>          NA     All schools
#> 4255                                <NA>          NA         Primary
#> 4256                                <NA>          NA       Secondary
#> 4257                                <NA>          NA         Special
#> 4258                      City of London         201     All schools
#> 4259                      City of London         201         Primary
#> 4260                Barking and Dagenham         301     All schools
#> 4261                Barking and Dagenham         301         Primary
#> 4262                Barking and Dagenham         301       Secondary
#> 4263                Barking and Dagenham         301         Special
#> 4264                              Barnet         302     All schools
#> 4265                              Barnet         302         Primary
#> 4266                              Barnet         302       Secondary
#> 4267                              Barnet         302         Special
#> 4268                              Bexley         303     All schools
#> 4269                              Bexley         303         Primary
#> 4270                              Bexley         303       Secondary
#> 4271                              Bexley         303         Special
#> 4272                               Brent         304     All schools
#> 4273                               Brent         304         Primary
#> 4274                               Brent         304       Secondary
#> 4275                               Brent         304         Special
#> 4276                             Bromley         305     All schools
#> 4277                             Bromley         305         Primary
#> 4278                             Bromley         305       Secondary
#> 4279                             Bromley         305         Special
#> 4280                              Camden         202     All schools
#> 4281                              Camden         202         Primary
#> 4282                              Camden         202       Secondary
#> 4283                              Camden         202         Special
#> 4284                             Croydon         306     All schools
#> 4285                             Croydon         306         Primary
#> 4286                             Croydon         306       Secondary
#> 4287                             Croydon         306         Special
#> 4288                              Ealing         307     All schools
#> 4289                              Ealing         307         Primary
#> 4290                              Ealing         307       Secondary
#> 4291                              Ealing         307         Special
#> 4292                             Enfield         308     All schools
#> 4293                             Enfield         308         Primary
#> 4294                             Enfield         308       Secondary
#> 4295                             Enfield         308         Special
#> 4296                           Greenwich         203     All schools
#> 4297                           Greenwich         203         Primary
#> 4298                           Greenwich         203       Secondary
#> 4299                           Greenwich         203         Special
#> 4300                             Hackney         204     All schools
#> 4301                             Hackney         204         Primary
#> 4302                             Hackney         204       Secondary
#> 4303                             Hackney         204         Special
#> 4304              Hammersmith and Fulham         205     All schools
#> 4305              Hammersmith and Fulham         205         Primary
#> 4306              Hammersmith and Fulham         205       Secondary
#> 4307              Hammersmith and Fulham         205         Special
#> 4308                            Haringey         309     All schools
#> 4309                            Haringey         309         Primary
#> 4310                            Haringey         309       Secondary
#> 4311                            Haringey         309         Special
#> 4312                              Harrow         310     All schools
#> 4313                              Harrow         310         Primary
#> 4314                              Harrow         310       Secondary
#> 4315                              Harrow         310         Special
#> 4316                            Havering         311     All schools
#> 4317                            Havering         311         Primary
#> 4318                            Havering         311       Secondary
#> 4319                            Havering         311         Special
#> 4320                          Hillingdon         312     All schools
#> 4321                          Hillingdon         312         Primary
#> 4322                          Hillingdon         312       Secondary
#> 4323                          Hillingdon         312         Special
#> 4324                            Hounslow         313     All schools
#> 4325                            Hounslow         313         Primary
#> 4326                            Hounslow         313       Secondary
#> 4327                            Hounslow         313         Special
#> 4328                           Islington         206     All schools
#> 4329                           Islington         206         Primary
#> 4330                           Islington         206       Secondary
#> 4331                           Islington         206         Special
#> 4332              Kensington and Chelsea         207     All schools
#> 4333              Kensington and Chelsea         207         Primary
#> 4334              Kensington and Chelsea         207       Secondary
#> 4335              Kensington and Chelsea         207         Special
#> 4336                Kingston upon Thames         314     All schools
#> 4337                Kingston upon Thames         314         Primary
#> 4338                Kingston upon Thames         314       Secondary
#> 4339                Kingston upon Thames         314         Special
#> 4340                             Lambeth         208     All schools
#> 4341                             Lambeth         208         Primary
#> 4342                             Lambeth         208       Secondary
#> 4343                             Lambeth         208         Special
#> 4344                            Lewisham         209     All schools
#> 4345                            Lewisham         209         Primary
#> 4346                            Lewisham         209       Secondary
#> 4347                            Lewisham         209         Special
#> 4348                              Merton         315     All schools
#> 4349                              Merton         315         Primary
#> 4350                              Merton         315       Secondary
#> 4351                              Merton         315         Special
#> 4352                              Newham         316     All schools
#> 4353                              Newham         316         Primary
#> 4354                              Newham         316       Secondary
#> 4355                              Newham         316         Special
#> 4356                           Redbridge         317     All schools
#> 4357                           Redbridge         317         Primary
#> 4358                           Redbridge         317       Secondary
#> 4359                           Redbridge         317         Special
#> 4360                Richmond upon Thames         318     All schools
#> 4361                Richmond upon Thames         318         Primary
#> 4362                Richmond upon Thames         318       Secondary
#> 4363                Richmond upon Thames         318         Special
#> 4364                           Southwark         210     All schools
#> 4365                           Southwark         210         Primary
#> 4366                           Southwark         210       Secondary
#> 4367                           Southwark         210         Special
#> 4368                              Sutton         319     All schools
#> 4369                              Sutton         319         Primary
#> 4370                              Sutton         319       Secondary
#> 4371                              Sutton         319         Special
#> 4372                       Tower Hamlets         211     All schools
#> 4373                       Tower Hamlets         211         Primary
#> 4374                       Tower Hamlets         211       Secondary
#> 4375                       Tower Hamlets         211         Special
#> 4376                      Waltham Forest         320     All schools
#> 4377                      Waltham Forest         320         Primary
#> 4378                      Waltham Forest         320       Secondary
#> 4379                      Waltham Forest         320         Special
#> 4380                          Wandsworth         212     All schools
#> 4381                          Wandsworth         212         Primary
#> 4382                          Wandsworth         212       Secondary
#> 4383                          Wandsworth         212         Special
#> 4384                         Westminster         213     All schools
#> 4385                         Westminster         213         Primary
#> 4386                         Westminster         213       Secondary
#> 4387                         Westminster         213         Special
#> 4388                                <NA>          NA     All schools
#> 4389                                <NA>          NA         Primary
#> 4390                                <NA>          NA       Secondary
#> 4391                                <NA>          NA         Special
#> 4392                              Medway         887     All schools
#> 4393                              Medway         887         Primary
#> 4394                              Medway         887       Secondary
#> 4395                              Medway         887         Special
#> 4396                    Bracknell Forest         867     All schools
#> 4397                    Bracknell Forest         867         Primary
#> 4398                    Bracknell Forest         867       Secondary
#> 4399                    Bracknell Forest         867         Special
#> 4400                      West Berkshire         869     All schools
#> 4401                      West Berkshire         869         Primary
#> 4402                      West Berkshire         869       Secondary
#> 4403                      West Berkshire         869         Special
#> 4404                             Reading         870     All schools
#> 4405                             Reading         870         Primary
#> 4406                             Reading         870       Secondary
#> 4407                             Reading         870         Special
#> 4408                              Slough         871     All schools
#> 4409                              Slough         871         Primary
#> 4410                              Slough         871       Secondary
#> 4411                              Slough         871         Special
#> 4412              Windsor and Maidenhead         868     All schools
#> 4413              Windsor and Maidenhead         868         Primary
#> 4414              Windsor and Maidenhead         868       Secondary
#> 4415              Windsor and Maidenhead         868         Special
#> 4416                           Wokingham         872     All schools
#> 4417                           Wokingham         872         Primary
#> 4418                           Wokingham         872       Secondary
#> 4419                           Wokingham         872         Special
#> 4420                       Milton Keynes         826     All schools
#> 4421                       Milton Keynes         826         Primary
#> 4422                       Milton Keynes         826       Secondary
#> 4423                       Milton Keynes         826         Special
#> 4424                   Brighton and Hove         846     All schools
#> 4425                   Brighton and Hove         846         Primary
#> 4426                   Brighton and Hove         846       Secondary
#> 4427                   Brighton and Hove         846         Special
#> 4428                          Portsmouth         851     All schools
#> 4429                          Portsmouth         851         Primary
#> 4430                          Portsmouth         851       Secondary
#> 4431                          Portsmouth         851         Special
#> 4432                         Southampton         852     All schools
#> 4433                         Southampton         852         Primary
#> 4434                         Southampton         852       Secondary
#> 4435                         Southampton         852         Special
#> 4436                       Isle of Wight         921     All schools
#> 4437                       Isle of Wight         921         Primary
#> 4438                       Isle of Wight         921       Secondary
#> 4439                       Isle of Wight         921         Special
#> 4440                     Buckinghamshire         825     All schools
#> 4441                     Buckinghamshire         825         Primary
#> 4442                     Buckinghamshire         825       Secondary
#> 4443                     Buckinghamshire         825         Special
#> 4444                         East Sussex         845     All schools
#> 4445                         East Sussex         845         Primary
#> 4446                         East Sussex         845       Secondary
#> 4447                         East Sussex         845         Special
#> 4448                           Hampshire         850     All schools
#> 4449                           Hampshire         850         Primary
#> 4450                           Hampshire         850       Secondary
#> 4451                           Hampshire         850         Special
#> 4452                                Kent         886     All schools
#> 4453                                Kent         886         Primary
#> 4454                                Kent         886       Secondary
#> 4455                                Kent         886         Special
#> 4456                         Oxfordshire         931     All schools
#> 4457                         Oxfordshire         931         Primary
#> 4458                         Oxfordshire         931       Secondary
#> 4459                         Oxfordshire         931         Special
#> 4460                              Surrey         936     All schools
#> 4461                              Surrey         936         Primary
#> 4462                              Surrey         936       Secondary
#> 4463                              Surrey         936         Special
#> 4464                         West Sussex         938     All schools
#> 4465                         West Sussex         938         Primary
#> 4466                         West Sussex         938       Secondary
#> 4467                         West Sussex         938         Special
#> 4468                                <NA>          NA     All schools
#> 4469                                <NA>          NA         Primary
#> 4470                                <NA>          NA       Secondary
#> 4471                                <NA>          NA         Special
#> 4472        Bath and North East Somerset         800     All schools
#> 4473        Bath and North East Somerset         800         Primary
#> 4474        Bath and North East Somerset         800       Secondary
#> 4475        Bath and North East Somerset         800         Special
#> 4476                    Bristol, City of         801     All schools
#> 4477                    Bristol, City of         801         Primary
#> 4478                    Bristol, City of         801       Secondary
#> 4479                    Bristol, City of         801         Special
#> 4480                      North Somerset         802     All schools
#> 4481                      North Somerset         802         Primary
#> 4482                      North Somerset         802       Secondary
#> 4483                      North Somerset         802         Special
#> 4484               South Gloucestershire         803     All schools
#> 4485               South Gloucestershire         803         Primary
#> 4486               South Gloucestershire         803       Secondary
#> 4487               South Gloucestershire         803         Special
#> 4488                            Plymouth         879     All schools
#> 4489                            Plymouth         879         Primary
#> 4490                            Plymouth         879       Secondary
#> 4491                            Plymouth         879         Special
#> 4492                              Torbay         880     All schools
#> 4493                              Torbay         880         Primary
#> 4494                              Torbay         880       Secondary
#> 4495                              Torbay         880         Special
#> 4496                             Swindon         866     All schools
#> 4497                             Swindon         866         Primary
#> 4498                             Swindon         866       Secondary
#> 4499                             Swindon         866         Special
#> 4500                            Cornwall         908     All schools
#> 4501                            Cornwall         908         Primary
#> 4502                            Cornwall         908       Secondary
#> 4503                            Cornwall         908         Special
#> 4504                     Isles of Scilly         420     All schools
#> 4505                     Isles of Scilly         420       Secondary
#> 4506                           Wiltshire         865     All schools
#> 4507                           Wiltshire         865         Primary
#> 4508                           Wiltshire         865       Secondary
#> 4509                           Wiltshire         865         Special
#> 4510 Bournemouth, Christchurch and Poole         839     All schools
#> 4511 Bournemouth, Christchurch and Poole         839         Primary
#> 4512 Bournemouth, Christchurch and Poole         839       Secondary
#> 4513 Bournemouth, Christchurch and Poole         839         Special
#> 4514                              Dorset         838     All schools
#> 4515                              Dorset         838         Primary
#> 4516                              Dorset         838       Secondary
#> 4517                              Dorset         838         Special
#> 4518                            Somerset         933     All schools
#> 4519                            Somerset         933         Primary
#> 4520                            Somerset         933       Secondary
#> 4521                            Somerset         933         Special
#> 4522                               Devon         878     All schools
#> 4523                               Devon         878         Primary
#> 4524                               Devon         878       Secondary
#> 4525                               Devon         878         Special
#> 4526                     Gloucestershire         916     All schools
#> 4527                     Gloucestershire         916         Primary
#> 4528                     Gloucestershire         916       Secondary
#> 4529                     Gloucestershire         916         Special
#> 4530                                <NA>          NA     All schools
#> 4531                                <NA>          NA         Primary
#> 4532                                <NA>          NA       Secondary
#> 4533                                <NA>          NA         Special
#> 4534                                <NA>          NA     All schools
#> 4535                                <NA>          NA         Primary
#> 4536                                <NA>          NA       Secondary
#> 4537                                <NA>          NA         Special
#> 4538                          Hartlepool         805     All schools
#> 4539                          Hartlepool         805         Primary
#> 4540                          Hartlepool         805       Secondary
#> 4541                          Hartlepool         805         Special
#> 4542                       Middlesbrough         806     All schools
#> 4543                       Middlesbrough         806         Primary
#> 4544                       Middlesbrough         806       Secondary
#> 4545                       Middlesbrough         806         Special
#> 4546                Redcar and Cleveland         807     All schools
#> 4547                Redcar and Cleveland         807         Primary
#> 4548                Redcar and Cleveland         807       Secondary
#> 4549                Redcar and Cleveland         807         Special
#> 4550                    Stockton-on-Tees         808     All schools
#> 4551                    Stockton-on-Tees         808         Primary
#> 4552                    Stockton-on-Tees         808       Secondary
#> 4553                    Stockton-on-Tees         808         Special
#> 4554                          Darlington         841     All schools
#> 4555                          Darlington         841         Primary
#> 4556                          Darlington         841       Secondary
#> 4557                          Darlington         841         Special
#> 4558                       County Durham         840     All schools
#> 4559                       County Durham         840         Primary
#> 4560                       County Durham         840       Secondary
#> 4561                       County Durham         840         Special
#> 4562                      Northumberland         929     All schools
#> 4563                      Northumberland         929         Primary
#> 4564                      Northumberland         929       Secondary
#> 4565                      Northumberland         929         Special
#> 4566                 Newcastle upon Tyne         391     All schools
#> 4567                 Newcastle upon Tyne         391         Primary
#> 4568                 Newcastle upon Tyne         391       Secondary
#> 4569                 Newcastle upon Tyne         391         Special
#> 4570                      North Tyneside         392     All schools
#> 4571                      North Tyneside         392         Primary
#> 4572                      North Tyneside         392       Secondary
#> 4573                      North Tyneside         392         Special
#> 4574                      South Tyneside         393     All schools
#> 4575                      South Tyneside         393         Primary
#> 4576                      South Tyneside         393       Secondary
#> 4577                      South Tyneside         393         Special
#> 4578                          Sunderland         394     All schools
#> 4579                          Sunderland         394         Primary
#> 4580                          Sunderland         394       Secondary
#> 4581                          Sunderland         394         Special
#> 4582                           Gateshead         390     All schools
#> 4583                           Gateshead         390         Primary
#> 4584                           Gateshead         390       Secondary
#> 4585                           Gateshead         390         Special
#> 4586                                <NA>          NA     All schools
#> 4587                                <NA>          NA         Primary
#> 4588                                <NA>          NA       Secondary
#> 4589                                <NA>          NA         Special
#> 4590                              Halton         876     All schools
#> 4591                              Halton         876         Primary
#> 4592                              Halton         876       Secondary
#> 4593                              Halton         876         Special
#> 4594                          Warrington         877     All schools
#> 4595                          Warrington         877         Primary
#> 4596                          Warrington         877       Secondary
#> 4597                          Warrington         877         Special
#> 4598               Blackburn with Darwen         889     All schools
#> 4599               Blackburn with Darwen         889         Primary
#> 4600               Blackburn with Darwen         889       Secondary
#> 4601               Blackburn with Darwen         889         Special
#> 4602                           Blackpool         890     All schools
#> 4603                           Blackpool         890         Primary
#> 4604                           Blackpool         890       Secondary
#> 4605                           Blackpool         890         Special
#> 4606                       Cheshire East         895     All schools
#> 4607                       Cheshire East         895         Primary
#> 4608                       Cheshire East         895       Secondary
#> 4609                       Cheshire East         895         Special
#> 4610           Cheshire West and Chester         896     All schools
#> 4611           Cheshire West and Chester         896         Primary
#> 4612           Cheshire West and Chester         896       Secondary
#> 4613           Cheshire West and Chester         896         Special
#> 4614                          Cumberland         942     All schools
#> 4615                          Cumberland         942         Primary
#> 4616                          Cumberland         942       Secondary
#> 4617                          Cumberland         942         Special
#> 4618             Westmorland and Furness         943     All schools
#> 4619             Westmorland and Furness         943         Primary
#> 4620             Westmorland and Furness         943       Secondary
#> 4621             Westmorland and Furness         943         Special
#> 4622                              Bolton         350     All schools
#> 4623                              Bolton         350         Primary
#> 4624                              Bolton         350       Secondary
#> 4625                              Bolton         350         Special
#> 4626                                Bury         351     All schools
#> 4627                                Bury         351         Primary
#> 4628                                Bury         351       Secondary
#> 4629                                Bury         351         Special
#> 4630                          Manchester         352     All schools
#> 4631                          Manchester         352         Primary
#> 4632                          Manchester         352       Secondary
#> 4633                          Manchester         352         Special
#> 4634                              Oldham         353     All schools
#> 4635                              Oldham         353         Primary
#> 4636                              Oldham         353       Secondary
#> 4637                              Oldham         353         Special
#> 4638                            Rochdale         354     All schools
#> 4639                            Rochdale         354         Primary
#> 4640                            Rochdale         354       Secondary
#> 4641                            Rochdale         354         Special
#> 4642                             Salford         355     All schools
#> 4643                             Salford         355         Primary
#> 4644                             Salford         355       Secondary
#> 4645                             Salford         355         Special
#> 4646                           Stockport         356     All schools
#> 4647                           Stockport         356         Primary
#> 4648                           Stockport         356       Secondary
#> 4649                           Stockport         356         Special
#> 4650                            Tameside         357     All schools
#> 4651                            Tameside         357         Primary
#> 4652                            Tameside         357       Secondary
#> 4653                            Tameside         357         Special
#> 4654                            Trafford         358     All schools
#> 4655                            Trafford         358         Primary
#> 4656                            Trafford         358       Secondary
#> 4657                            Trafford         358         Special
#> 4658                               Wigan         359     All schools
#> 4659                               Wigan         359         Primary
#> 4660                               Wigan         359       Secondary
#> 4661                               Wigan         359         Special
#> 4662                            Knowsley         340     All schools
#> 4663                            Knowsley         340         Primary
#> 4664                            Knowsley         340       Secondary
#> 4665                            Knowsley         340         Special
#> 4666                           Liverpool         341     All schools
#> 4667                           Liverpool         341         Primary
#> 4668                           Liverpool         341       Secondary
#> 4669                           Liverpool         341         Special
#> 4670                          St. Helens         342     All schools
#> 4671                          St. Helens         342         Primary
#> 4672                          St. Helens         342       Secondary
#> 4673                          St. Helens         342         Special
#> 4674                              Sefton         343     All schools
#> 4675                              Sefton         343         Primary
#> 4676                              Sefton         343       Secondary
#> 4677                              Sefton         343         Special
#> 4678                              Wirral         344     All schools
#> 4679                              Wirral         344         Primary
#> 4680                              Wirral         344       Secondary
#> 4681                              Wirral         344         Special
#> 4682                          Lancashire         888     All schools
#> 4683                          Lancashire         888         Primary
#> 4684                          Lancashire         888       Secondary
#> 4685                          Lancashire         888         Special
#> 4686                                <NA>          NA     All schools
#> 4687                                <NA>          NA         Primary
#> 4688                                <NA>          NA       Secondary
#> 4689                                <NA>          NA         Special
#> 4690         Kingston upon Hull, City of         810     All schools
#> 4691         Kingston upon Hull, City of         810         Primary
#> 4692         Kingston upon Hull, City of         810       Secondary
#> 4693         Kingston upon Hull, City of         810         Special
#> 4694            East Riding of Yorkshire         811     All schools
#> 4695            East Riding of Yorkshire         811         Primary
#> 4696            East Riding of Yorkshire         811       Secondary
#> 4697            East Riding of Yorkshire         811         Special
#> 4698             North East Lincolnshire         812     All schools
#> 4699             North East Lincolnshire         812         Primary
#> 4700             North East Lincolnshire         812       Secondary
#> 4701             North East Lincolnshire         812         Special
#> 4702                  North Lincolnshire         813     All schools
#> 4703                  North Lincolnshire         813         Primary
#> 4704                  North Lincolnshire         813       Secondary
#> 4705                  North Lincolnshire         813         Special
#> 4706                                York         816     All schools
#> 4707                                York         816         Primary
#> 4708                                York         816       Secondary
#> 4709                                York         816         Special
#> 4710                     North Yorkshire         815     All schools
#> 4711                     North Yorkshire         815         Primary
#> 4712                     North Yorkshire         815       Secondary
#> 4713                     North Yorkshire         815         Special
#> 4714                            Barnsley         370     All schools
#> 4715                            Barnsley         370         Primary
#> 4716                            Barnsley         370       Secondary
#> 4717                            Barnsley         370         Special
#> 4718                           Doncaster         371     All schools
#> 4719                           Doncaster         371         Primary
#> 4720                           Doncaster         371       Secondary
#> 4721                           Doncaster         371         Special
#> 4722                           Rotherham         372     All schools
#> 4723                           Rotherham         372         Primary
#> 4724                           Rotherham         372       Secondary
#> 4725                           Rotherham         372         Special
#> 4726                           Sheffield         373     All schools
#> 4727                           Sheffield         373         Primary
#> 4728                           Sheffield         373       Secondary
#> 4729                           Sheffield         373         Special
#> 4730                            Bradford         380     All schools
#> 4731                            Bradford         380         Primary
#> 4732                            Bradford         380       Secondary
#> 4733                            Bradford         380         Special
#> 4734                          Calderdale         381     All schools
#> 4735                          Calderdale         381         Primary
#> 4736                          Calderdale         381       Secondary
#> 4737                          Calderdale         381         Special
#> 4738                            Kirklees         382     All schools
#> 4739                            Kirklees         382         Primary
#> 4740                            Kirklees         382       Secondary
#> 4741                            Kirklees         382         Special
#> 4742                               Leeds         383     All schools
#> 4743                               Leeds         383         Primary
#> 4744                               Leeds         383       Secondary
#> 4745                               Leeds         383         Special
#> 4746                           Wakefield         384     All schools
#> 4747                           Wakefield         384         Primary
#> 4748                           Wakefield         384       Secondary
#> 4749                           Wakefield         384         Special
#> 4750                                <NA>          NA     All schools
#> 4751                                <NA>          NA         Primary
#> 4752                                <NA>          NA       Secondary
#> 4753                                <NA>          NA         Special
#> 4754                               Derby         831     All schools
#> 4755                               Derby         831         Primary
#> 4756                               Derby         831       Secondary
#> 4757                               Derby         831         Special
#> 4758                           Leicester         856     All schools
#> 4759                           Leicester         856         Primary
#> 4760                           Leicester         856       Secondary
#> 4761                           Leicester         856         Special
#> 4762                             Rutland         857     All schools
#> 4763                             Rutland         857         Primary
#> 4764                             Rutland         857       Secondary
#> 4765                          Nottingham         892     All schools
#> 4766                          Nottingham         892         Primary
#> 4767                          Nottingham         892       Secondary
#> 4768                          Nottingham         892         Special
#> 4769              North Northamptonshire         940     All schools
#> 4770              North Northamptonshire         940         Primary
#> 4771              North Northamptonshire         940       Secondary
#> 4772              North Northamptonshire         940         Special
#> 4773               West Northamptonshire         941     All schools
#> 4774               West Northamptonshire         941         Primary
#> 4775               West Northamptonshire         941       Secondary
#> 4776               West Northamptonshire         941         Special
#> 4777                          Derbyshire         830     All schools
#> 4778                          Derbyshire         830         Primary
#> 4779                          Derbyshire         830       Secondary
#> 4780                          Derbyshire         830         Special
#> 4781                      Leicestershire         855     All schools
#> 4782                      Leicestershire         855         Primary
#> 4783                      Leicestershire         855       Secondary
#> 4784                      Leicestershire         855         Special
#> 4785                        Lincolnshire         925     All schools
#> 4786                        Lincolnshire         925         Primary
#> 4787                        Lincolnshire         925       Secondary
#> 4788                        Lincolnshire         925         Special
#> 4789                     Nottinghamshire         891     All schools
#> 4790                     Nottinghamshire         891         Primary
#> 4791                     Nottinghamshire         891       Secondary
#> 4792                     Nottinghamshire         891         Special
#> 4793                                <NA>          NA     All schools
#> 4794                                <NA>          NA         Primary
#> 4795                                <NA>          NA       Secondary
#> 4796                                <NA>          NA         Special
#> 4797            Herefordshire, County of         884     All schools
#> 4798            Herefordshire, County of         884         Primary
#> 4799            Herefordshire, County of         884       Secondary
#> 4800            Herefordshire, County of         884         Special
#> 4801                  Telford and Wrekin         894     All schools
#> 4802                  Telford and Wrekin         894         Primary
#> 4803                  Telford and Wrekin         894       Secondary
#> 4804                  Telford and Wrekin         894         Special
#> 4805                      Stoke-on-Trent         861     All schools
#> 4806                      Stoke-on-Trent         861         Primary
#> 4807                      Stoke-on-Trent         861       Secondary
#> 4808                      Stoke-on-Trent         861         Special
#> 4809                          Shropshire         893     All schools
#> 4810                          Shropshire         893         Primary
#> 4811                          Shropshire         893       Secondary
#> 4812                          Shropshire         893         Special
#> 4813                          Birmingham         330     All schools
#> 4814                          Birmingham         330         Primary
#> 4815                          Birmingham         330       Secondary
#> 4816                          Birmingham         330         Special
#> 4817                            Coventry         331     All schools
#> 4818                            Coventry         331         Primary
#> 4819                            Coventry         331       Secondary
#> 4820                            Coventry         331         Special
#> 4821                              Dudley         332     All schools
#> 4822                              Dudley         332         Primary
#> 4823                              Dudley         332       Secondary
#> 4824                              Dudley         332         Special
#> 4825                            Sandwell         333     All schools
#> 4826                            Sandwell         333         Primary
#> 4827                            Sandwell         333       Secondary
#> 4828                            Sandwell         333         Special
#> 4829                            Solihull         334     All schools
#> 4830                            Solihull         334         Primary
#> 4831                            Solihull         334       Secondary
#> 4832                            Solihull         334         Special
#> 4833                             Walsall         335     All schools
#> 4834                             Walsall         335         Primary
#> 4835                             Walsall         335       Secondary
#> 4836                             Walsall         335         Special
#> 4837                       Wolverhampton         336     All schools
#> 4838                       Wolverhampton         336         Primary
#> 4839                       Wolverhampton         336       Secondary
#> 4840                       Wolverhampton         336         Special
#> 4841                       Staffordshire         860     All schools
#> 4842                       Staffordshire         860         Primary
#> 4843                       Staffordshire         860       Secondary
#> 4844                       Staffordshire         860         Special
#> 4845                        Warwickshire         937     All schools
#> 4846                        Warwickshire         937         Primary
#> 4847                        Warwickshire         937       Secondary
#> 4848                        Warwickshire         937         Special
#> 4849                      Worcestershire         885     All schools
#> 4850                      Worcestershire         885         Primary
#> 4851                      Worcestershire         885       Secondary
#> 4852                      Worcestershire         885         Special
#> 4853                                <NA>          NA     All schools
#> 4854                                <NA>          NA         Primary
#> 4855                                <NA>          NA       Secondary
#> 4856                                <NA>          NA         Special
#> 4857                        Peterborough         874     All schools
#> 4858                        Peterborough         874         Primary
#> 4859                        Peterborough         874       Secondary
#> 4860                        Peterborough         874         Special
#> 4861                               Luton         821     All schools
#> 4862                               Luton         821         Primary
#> 4863                               Luton         821       Secondary
#> 4864                               Luton         821         Special
#> 4865                     Southend-on-Sea         882     All schools
#> 4866                     Southend-on-Sea         882         Primary
#> 4867                     Southend-on-Sea         882       Secondary
#> 4868                     Southend-on-Sea         882         Special
#> 4869                            Thurrock         883     All schools
#> 4870                            Thurrock         883         Primary
#> 4871                            Thurrock         883       Secondary
#> 4872                            Thurrock         883         Special
#> 4873                             Bedford         822     All schools
#> 4874                             Bedford         822         Primary
#> 4875                             Bedford         822       Secondary
#> 4876                             Bedford         822         Special
#> 4877                Central Bedfordshire         823     All schools
#> 4878                Central Bedfordshire         823         Primary
#> 4879                Central Bedfordshire         823       Secondary
#> 4880                Central Bedfordshire         823         Special
#> 4881                      Cambridgeshire         873     All schools
#> 4882                      Cambridgeshire         873         Primary
#> 4883                      Cambridgeshire         873       Secondary
#> 4884                      Cambridgeshire         873         Special
#> 4885                               Essex         881     All schools
#> 4886                               Essex         881         Primary
#> 4887                               Essex         881       Secondary
#> 4888                               Essex         881         Special
#> 4889                       Hertfordshire         919     All schools
#> 4890                       Hertfordshire         919         Primary
#> 4891                       Hertfordshire         919       Secondary
#> 4892                       Hertfordshire         919         Special
#> 4893                             Norfolk         926     All schools
#> 4894                             Norfolk         926         Primary
#> 4895                             Norfolk         926       Secondary
#> 4896                             Norfolk         926         Special
#> 4897                             Suffolk         935     All schools
#> 4898                             Suffolk         935         Primary
#> 4899                             Suffolk         935       Secondary
#> 4900                             Suffolk         935         Special
#> 4901                                <NA>          NA     All schools
#> 4902                                <NA>          NA         Primary
#> 4903                                <NA>          NA       Secondary
#> 4904                                <NA>          NA         Special
#> 4905                      City of London         201     All schools
#> 4906                      City of London         201         Primary
#> 4907                Barking and Dagenham         301     All schools
#> 4908                Barking and Dagenham         301         Primary
#> 4909                Barking and Dagenham         301       Secondary
#> 4910                Barking and Dagenham         301         Special
#> 4911                              Barnet         302     All schools
#> 4912                              Barnet         302         Primary
#> 4913                              Barnet         302       Secondary
#> 4914                              Barnet         302         Special
#> 4915                              Bexley         303     All schools
#> 4916                              Bexley         303         Primary
#> 4917                              Bexley         303       Secondary
#> 4918                              Bexley         303         Special
#> 4919                               Brent         304     All schools
#> 4920                               Brent         304         Primary
#> 4921                               Brent         304       Secondary
#> 4922                               Brent         304         Special
#> 4923                             Bromley         305     All schools
#> 4924                             Bromley         305         Primary
#> 4925                             Bromley         305       Secondary
#> 4926                             Bromley         305         Special
#> 4927                              Camden         202     All schools
#> 4928                              Camden         202         Primary
#> 4929                              Camden         202       Secondary
#> 4930                              Camden         202         Special
#> 4931                             Croydon         306     All schools
#> 4932                             Croydon         306         Primary
#> 4933                             Croydon         306       Secondary
#> 4934                             Croydon         306         Special
#> 4935                              Ealing         307     All schools
#> 4936                              Ealing         307         Primary
#> 4937                              Ealing         307       Secondary
#> 4938                              Ealing         307         Special
#> 4939                             Enfield         308     All schools
#> 4940                             Enfield         308         Primary
#> 4941                             Enfield         308       Secondary
#> 4942                             Enfield         308         Special
#> 4943                           Greenwich         203     All schools
#> 4944                           Greenwich         203         Primary
#> 4945                           Greenwich         203       Secondary
#> 4946                           Greenwich         203         Special
#> 4947                             Hackney         204     All schools
#> 4948                             Hackney         204         Primary
#> 4949                             Hackney         204       Secondary
#> 4950                             Hackney         204         Special
#> 4951              Hammersmith and Fulham         205     All schools
#> 4952              Hammersmith and Fulham         205         Primary
#> 4953              Hammersmith and Fulham         205       Secondary
#> 4954              Hammersmith and Fulham         205         Special
#> 4955                            Haringey         309     All schools
#> 4956                            Haringey         309         Primary
#> 4957                            Haringey         309       Secondary
#> 4958                            Haringey         309         Special
#> 4959                              Harrow         310     All schools
#> 4960                              Harrow         310         Primary
#> 4961                              Harrow         310       Secondary
#> 4962                              Harrow         310         Special
#> 4963                            Havering         311     All schools
#> 4964                            Havering         311         Primary
#> 4965                            Havering         311       Secondary
#> 4966                            Havering         311         Special
#> 4967                          Hillingdon         312     All schools
#> 4968                          Hillingdon         312         Primary
#> 4969                          Hillingdon         312       Secondary
#> 4970                          Hillingdon         312         Special
#> 4971                            Hounslow         313     All schools
#> 4972                            Hounslow         313         Primary
#> 4973                            Hounslow         313       Secondary
#> 4974                            Hounslow         313         Special
#> 4975                           Islington         206     All schools
#> 4976                           Islington         206         Primary
#> 4977                           Islington         206       Secondary
#> 4978                           Islington         206         Special
#> 4979              Kensington and Chelsea         207     All schools
#> 4980              Kensington and Chelsea         207         Primary
#> 4981              Kensington and Chelsea         207       Secondary
#> 4982              Kensington and Chelsea         207         Special
#> 4983                Kingston upon Thames         314     All schools
#> 4984                Kingston upon Thames         314         Primary
#> 4985                Kingston upon Thames         314       Secondary
#> 4986                Kingston upon Thames         314         Special
#> 4987                             Lambeth         208     All schools
#> 4988                             Lambeth         208         Primary
#> 4989                             Lambeth         208       Secondary
#> 4990                             Lambeth         208         Special
#> 4991                            Lewisham         209     All schools
#> 4992                            Lewisham         209         Primary
#> 4993                            Lewisham         209       Secondary
#> 4994                            Lewisham         209         Special
#> 4995                              Merton         315     All schools
#> 4996                              Merton         315         Primary
#> 4997                              Merton         315       Secondary
#> 4998                              Merton         315         Special
#> 4999                              Newham         316     All schools
#> 5000                              Newham         316         Primary
#> 5001                              Newham         316       Secondary
#> 5002                              Newham         316         Special
#> 5003                           Redbridge         317     All schools
#> 5004                           Redbridge         317         Primary
#> 5005                           Redbridge         317       Secondary
#> 5006                           Redbridge         317         Special
#> 5007                Richmond upon Thames         318     All schools
#> 5008                Richmond upon Thames         318         Primary
#> 5009                Richmond upon Thames         318       Secondary
#> 5010                Richmond upon Thames         318         Special
#> 5011                           Southwark         210     All schools
#> 5012                           Southwark         210         Primary
#> 5013                           Southwark         210       Secondary
#> 5014                           Southwark         210         Special
#> 5015                              Sutton         319     All schools
#> 5016                              Sutton         319         Primary
#> 5017                              Sutton         319       Secondary
#> 5018                              Sutton         319         Special
#> 5019                       Tower Hamlets         211     All schools
#> 5020                       Tower Hamlets         211         Primary
#> 5021                       Tower Hamlets         211       Secondary
#> 5022                       Tower Hamlets         211         Special
#> 5023                      Waltham Forest         320     All schools
#> 5024                      Waltham Forest         320         Primary
#> 5025                      Waltham Forest         320       Secondary
#> 5026                      Waltham Forest         320         Special
#> 5027                          Wandsworth         212     All schools
#> 5028                          Wandsworth         212         Primary
#> 5029                          Wandsworth         212       Secondary
#> 5030                          Wandsworth         212         Special
#> 5031                         Westminster         213     All schools
#> 5032                         Westminster         213         Primary
#> 5033                         Westminster         213       Secondary
#> 5034                         Westminster         213         Special
#> 5035                                <NA>          NA     All schools
#> 5036                                <NA>          NA         Primary
#> 5037                                <NA>          NA       Secondary
#> 5038                                <NA>          NA         Special
#> 5039                              Medway         887     All schools
#> 5040                              Medway         887         Primary
#> 5041                              Medway         887       Secondary
#> 5042                              Medway         887         Special
#> 5043                    Bracknell Forest         867     All schools
#> 5044                    Bracknell Forest         867         Primary
#> 5045                    Bracknell Forest         867       Secondary
#> 5046                    Bracknell Forest         867         Special
#> 5047                      West Berkshire         869     All schools
#> 5048                      West Berkshire         869         Primary
#> 5049                      West Berkshire         869       Secondary
#> 5050                      West Berkshire         869         Special
#> 5051                             Reading         870     All schools
#> 5052                             Reading         870         Primary
#> 5053                             Reading         870       Secondary
#> 5054                             Reading         870         Special
#> 5055                              Slough         871     All schools
#> 5056                              Slough         871         Primary
#> 5057                              Slough         871       Secondary
#> 5058                              Slough         871         Special
#> 5059              Windsor and Maidenhead         868     All schools
#> 5060              Windsor and Maidenhead         868         Primary
#> 5061              Windsor and Maidenhead         868       Secondary
#> 5062              Windsor and Maidenhead         868         Special
#> 5063                           Wokingham         872     All schools
#> 5064                           Wokingham         872         Primary
#> 5065                           Wokingham         872       Secondary
#> 5066                           Wokingham         872         Special
#> 5067                       Milton Keynes         826     All schools
#> 5068                       Milton Keynes         826         Primary
#> 5069                       Milton Keynes         826       Secondary
#> 5070                       Milton Keynes         826         Special
#> 5071                   Brighton and Hove         846     All schools
#> 5072                   Brighton and Hove         846         Primary
#> 5073                   Brighton and Hove         846       Secondary
#> 5074                   Brighton and Hove         846         Special
#> 5075                          Portsmouth         851     All schools
#> 5076                          Portsmouth         851         Primary
#> 5077                          Portsmouth         851       Secondary
#> 5078                          Portsmouth         851         Special
#> 5079                         Southampton         852     All schools
#> 5080                         Southampton         852         Primary
#> 5081                         Southampton         852       Secondary
#> 5082                         Southampton         852         Special
#> 5083                       Isle of Wight         921     All schools
#> 5084                       Isle of Wight         921         Primary
#> 5085                       Isle of Wight         921       Secondary
#> 5086                       Isle of Wight         921         Special
#> 5087                     Buckinghamshire         825     All schools
#> 5088                     Buckinghamshire         825         Primary
#> 5089                     Buckinghamshire         825       Secondary
#> 5090                     Buckinghamshire         825         Special
#> 5091                         East Sussex         845     All schools
#> 5092                         East Sussex         845         Primary
#> 5093                         East Sussex         845       Secondary
#> 5094                         East Sussex         845         Special
#> 5095                           Hampshire         850     All schools
#> 5096                           Hampshire         850         Primary
#> 5097                           Hampshire         850       Secondary
#> 5098                           Hampshire         850         Special
#> 5099                                Kent         886     All schools
#> 5100                                Kent         886         Primary
#> 5101                                Kent         886       Secondary
#> 5102                                Kent         886         Special
#> 5103                         Oxfordshire         931     All schools
#> 5104                         Oxfordshire         931         Primary
#> 5105                         Oxfordshire         931       Secondary
#> 5106                         Oxfordshire         931         Special
#> 5107                              Surrey         936     All schools
#> 5108                              Surrey         936         Primary
#> 5109                              Surrey         936       Secondary
#> 5110                              Surrey         936         Special
#> 5111                         West Sussex         938     All schools
#> 5112                         West Sussex         938         Primary
#> 5113                         West Sussex         938       Secondary
#> 5114                         West Sussex         938         Special
#> 5115                                <NA>          NA     All schools
#> 5116                                <NA>          NA         Primary
#> 5117                                <NA>          NA       Secondary
#> 5118                                <NA>          NA         Special
#> 5119        Bath and North East Somerset         800     All schools
#> 5120        Bath and North East Somerset         800         Primary
#> 5121        Bath and North East Somerset         800       Secondary
#> 5122        Bath and North East Somerset         800         Special
#> 5123                    Bristol, City of         801     All schools
#> 5124                    Bristol, City of         801         Primary
#> 5125                    Bristol, City of         801       Secondary
#> 5126                    Bristol, City of         801         Special
#> 5127                      North Somerset         802     All schools
#> 5128                      North Somerset         802         Primary
#> 5129                      North Somerset         802       Secondary
#> 5130                      North Somerset         802         Special
#> 5131               South Gloucestershire         803     All schools
#> 5132               South Gloucestershire         803         Primary
#> 5133               South Gloucestershire         803       Secondary
#> 5134               South Gloucestershire         803         Special
#> 5135                            Plymouth         879     All schools
#> 5136                            Plymouth         879         Primary
#> 5137                            Plymouth         879       Secondary
#> 5138                            Plymouth         879         Special
#> 5139                              Torbay         880     All schools
#> 5140                              Torbay         880         Primary
#> 5141                              Torbay         880       Secondary
#> 5142                              Torbay         880         Special
#> 5143                             Swindon         866     All schools
#> 5144                             Swindon         866         Primary
#> 5145                             Swindon         866       Secondary
#> 5146                             Swindon         866         Special
#> 5147                            Cornwall         908     All schools
#> 5148                            Cornwall         908         Primary
#> 5149                            Cornwall         908       Secondary
#> 5150                            Cornwall         908         Special
#> 5151                     Isles of Scilly         420     All schools
#> 5152                     Isles of Scilly         420       Secondary
#> 5153                           Wiltshire         865     All schools
#> 5154                           Wiltshire         865         Primary
#> 5155                           Wiltshire         865       Secondary
#> 5156                           Wiltshire         865         Special
#> 5157 Bournemouth, Christchurch and Poole         839     All schools
#> 5158 Bournemouth, Christchurch and Poole         839         Primary
#> 5159 Bournemouth, Christchurch and Poole         839       Secondary
#> 5160 Bournemouth, Christchurch and Poole         839         Special
#> 5161                              Dorset         838     All schools
#> 5162                              Dorset         838         Primary
#> 5163                              Dorset         838       Secondary
#> 5164                              Dorset         838         Special
#> 5165                            Somerset         933     All schools
#> 5166                            Somerset         933         Primary
#> 5167                            Somerset         933       Secondary
#> 5168                            Somerset         933         Special
#> 5169                               Devon         878     All schools
#> 5170                               Devon         878         Primary
#> 5171                               Devon         878       Secondary
#> 5172                               Devon         878         Special
#> 5173                     Gloucestershire         916     All schools
#> 5174                     Gloucestershire         916         Primary
#> 5175                     Gloucestershire         916       Secondary
#> 5176                     Gloucestershire         916         Special
#> 5177                                <NA>          NA     All schools
#> 5178                                <NA>          NA         Primary
#> 5179                                <NA>          NA       Secondary
#> 5180                                <NA>          NA         Special
#> 5181                                <NA>          NA     All schools
#> 5182                                <NA>          NA         Primary
#> 5183                                <NA>          NA       Secondary
#> 5184                                <NA>          NA         Special
#> 5185                          Hartlepool         805     All schools
#> 5186                          Hartlepool         805         Primary
#> 5187                          Hartlepool         805       Secondary
#> 5188                          Hartlepool         805         Special
#> 5189                       Middlesbrough         806     All schools
#> 5190                       Middlesbrough         806         Primary
#> 5191                       Middlesbrough         806       Secondary
#> 5192                       Middlesbrough         806         Special
#> 5193                Redcar and Cleveland         807     All schools
#> 5194                Redcar and Cleveland         807         Primary
#> 5195                Redcar and Cleveland         807       Secondary
#> 5196                Redcar and Cleveland         807         Special
#> 5197                    Stockton-on-Tees         808     All schools
#> 5198                    Stockton-on-Tees         808         Primary
#> 5199                    Stockton-on-Tees         808       Secondary
#> 5200                    Stockton-on-Tees         808         Special
#> 5201                          Darlington         841     All schools
#> 5202                          Darlington         841         Primary
#> 5203                          Darlington         841       Secondary
#> 5204                          Darlington         841         Special
#> 5205                       County Durham         840     All schools
#> 5206                       County Durham         840         Primary
#> 5207                       County Durham         840       Secondary
#> 5208                       County Durham         840         Special
#> 5209                      Northumberland         929     All schools
#> 5210                      Northumberland         929         Primary
#> 5211                      Northumberland         929       Secondary
#> 5212                      Northumberland         929         Special
#> 5213                 Newcastle upon Tyne         391     All schools
#> 5214                 Newcastle upon Tyne         391         Primary
#> 5215                 Newcastle upon Tyne         391       Secondary
#> 5216                 Newcastle upon Tyne         391         Special
#> 5217                      North Tyneside         392     All schools
#> 5218                      North Tyneside         392         Primary
#> 5219                      North Tyneside         392       Secondary
#> 5220                      North Tyneside         392         Special
#> 5221                      South Tyneside         393     All schools
#> 5222                      South Tyneside         393         Primary
#> 5223                      South Tyneside         393       Secondary
#> 5224                      South Tyneside         393         Special
#> 5225                          Sunderland         394     All schools
#> 5226                          Sunderland         394         Primary
#> 5227                          Sunderland         394       Secondary
#> 5228                          Sunderland         394         Special
#> 5229                           Gateshead         390     All schools
#> 5230                           Gateshead         390         Primary
#> 5231                           Gateshead         390       Secondary
#> 5232                           Gateshead         390         Special
#> 5233                                <NA>          NA     All schools
#> 5234                                <NA>          NA         Primary
#> 5235                                <NA>          NA       Secondary
#> 5236                                <NA>          NA         Special
#> 5237                              Halton         876     All schools
#> 5238                              Halton         876         Primary
#> 5239                              Halton         876       Secondary
#> 5240                              Halton         876         Special
#> 5241                          Warrington         877     All schools
#> 5242                          Warrington         877         Primary
#> 5243                          Warrington         877       Secondary
#> 5244                          Warrington         877         Special
#> 5245               Blackburn with Darwen         889     All schools
#> 5246               Blackburn with Darwen         889         Primary
#> 5247               Blackburn with Darwen         889       Secondary
#> 5248               Blackburn with Darwen         889         Special
#> 5249                           Blackpool         890     All schools
#> 5250                           Blackpool         890         Primary
#> 5251                           Blackpool         890       Secondary
#> 5252                           Blackpool         890         Special
#> 5253                       Cheshire East         895     All schools
#> 5254                       Cheshire East         895         Primary
#> 5255                       Cheshire East         895       Secondary
#> 5256                       Cheshire East         895         Special
#> 5257           Cheshire West and Chester         896     All schools
#> 5258           Cheshire West and Chester         896         Primary
#> 5259           Cheshire West and Chester         896       Secondary
#> 5260           Cheshire West and Chester         896         Special
#> 5261                          Cumberland         942     All schools
#> 5262                          Cumberland         942         Primary
#> 5263                          Cumberland         942       Secondary
#> 5264                          Cumberland         942         Special
#> 5265             Westmorland and Furness         943     All schools
#> 5266             Westmorland and Furness         943         Primary
#> 5267             Westmorland and Furness         943       Secondary
#> 5268             Westmorland and Furness         943         Special
#> 5269                              Bolton         350     All schools
#> 5270                              Bolton         350         Primary
#> 5271                              Bolton         350       Secondary
#> 5272                              Bolton         350         Special
#> 5273                                Bury         351     All schools
#> 5274                                Bury         351         Primary
#> 5275                                Bury         351       Secondary
#> 5276                                Bury         351         Special
#> 5277                          Manchester         352     All schools
#> 5278                          Manchester         352         Primary
#> 5279                          Manchester         352       Secondary
#> 5280                          Manchester         352         Special
#> 5281                              Oldham         353     All schools
#> 5282                              Oldham         353         Primary
#> 5283                              Oldham         353       Secondary
#> 5284                              Oldham         353         Special
#> 5285                            Rochdale         354     All schools
#> 5286                            Rochdale         354         Primary
#> 5287                            Rochdale         354       Secondary
#> 5288                            Rochdale         354         Special
#> 5289                             Salford         355     All schools
#> 5290                             Salford         355         Primary
#> 5291                             Salford         355       Secondary
#> 5292                             Salford         355         Special
#> 5293                           Stockport         356     All schools
#> 5294                           Stockport         356         Primary
#> 5295                           Stockport         356       Secondary
#> 5296                           Stockport         356         Special
#> 5297                            Tameside         357     All schools
#> 5298                            Tameside         357         Primary
#> 5299                            Tameside         357       Secondary
#> 5300                            Tameside         357         Special
#> 5301                            Trafford         358     All schools
#> 5302                            Trafford         358         Primary
#> 5303                            Trafford         358       Secondary
#> 5304                            Trafford         358         Special
#> 5305                               Wigan         359     All schools
#> 5306                               Wigan         359         Primary
#> 5307                               Wigan         359       Secondary
#> 5308                               Wigan         359         Special
#> 5309                            Knowsley         340     All schools
#> 5310                            Knowsley         340         Primary
#> 5311                            Knowsley         340       Secondary
#> 5312                            Knowsley         340         Special
#> 5313                           Liverpool         341     All schools
#> 5314                           Liverpool         341         Primary
#> 5315                           Liverpool         341       Secondary
#> 5316                           Liverpool         341         Special
#> 5317                          St. Helens         342     All schools
#> 5318                          St. Helens         342         Primary
#> 5319                          St. Helens         342       Secondary
#> 5320                          St. Helens         342         Special
#> 5321                              Sefton         343     All schools
#> 5322                              Sefton         343         Primary
#> 5323                              Sefton         343       Secondary
#> 5324                              Sefton         343         Special
#> 5325                              Wirral         344     All schools
#> 5326                              Wirral         344         Primary
#> 5327                              Wirral         344       Secondary
#> 5328                              Wirral         344         Special
#> 5329                          Lancashire         888     All schools
#> 5330                          Lancashire         888         Primary
#> 5331                          Lancashire         888       Secondary
#> 5332                          Lancashire         888         Special
#> 5333                                <NA>          NA     All schools
#> 5334                                <NA>          NA         Primary
#> 5335                                <NA>          NA       Secondary
#> 5336                                <NA>          NA         Special
#> 5337         Kingston upon Hull, City of         810     All schools
#> 5338         Kingston upon Hull, City of         810         Primary
#> 5339         Kingston upon Hull, City of         810       Secondary
#> 5340         Kingston upon Hull, City of         810         Special
#> 5341            East Riding of Yorkshire         811     All schools
#> 5342            East Riding of Yorkshire         811         Primary
#> 5343            East Riding of Yorkshire         811       Secondary
#> 5344            East Riding of Yorkshire         811         Special
#> 5345             North East Lincolnshire         812     All schools
#> 5346             North East Lincolnshire         812         Primary
#> 5347             North East Lincolnshire         812       Secondary
#> 5348             North East Lincolnshire         812         Special
#> 5349                  North Lincolnshire         813     All schools
#> 5350                  North Lincolnshire         813         Primary
#> 5351                  North Lincolnshire         813       Secondary
#> 5352                  North Lincolnshire         813         Special
#> 5353                                York         816     All schools
#> 5354                                York         816         Primary
#> 5355                                York         816       Secondary
#> 5356                                York         816         Special
#> 5357                     North Yorkshire         815     All schools
#> 5358                     North Yorkshire         815         Primary
#> 5359                     North Yorkshire         815       Secondary
#> 5360                     North Yorkshire         815         Special
#> 5361                            Barnsley         370     All schools
#> 5362                            Barnsley         370         Primary
#> 5363                            Barnsley         370       Secondary
#> 5364                            Barnsley         370         Special
#> 5365                           Doncaster         371     All schools
#> 5366                           Doncaster         371         Primary
#> 5367                           Doncaster         371       Secondary
#> 5368                           Doncaster         371         Special
#> 5369                           Rotherham         372     All schools
#> 5370                           Rotherham         372         Primary
#> 5371                           Rotherham         372       Secondary
#> 5372                           Rotherham         372         Special
#> 5373                           Sheffield         373     All schools
#> 5374                           Sheffield         373         Primary
#> 5375                           Sheffield         373       Secondary
#> 5376                           Sheffield         373         Special
#> 5377                            Bradford         380     All schools
#> 5378                            Bradford         380         Primary
#> 5379                            Bradford         380       Secondary
#> 5380                            Bradford         380         Special
#> 5381                          Calderdale         381     All schools
#> 5382                          Calderdale         381         Primary
#> 5383                          Calderdale         381       Secondary
#> 5384                          Calderdale         381         Special
#> 5385                            Kirklees         382     All schools
#> 5386                            Kirklees         382         Primary
#> 5387                            Kirklees         382       Secondary
#> 5388                            Kirklees         382         Special
#> 5389                               Leeds         383     All schools
#> 5390                               Leeds         383         Primary
#> 5391                               Leeds         383       Secondary
#> 5392                               Leeds         383         Special
#> 5393                           Wakefield         384     All schools
#> 5394                           Wakefield         384         Primary
#> 5395                           Wakefield         384       Secondary
#> 5396                           Wakefield         384         Special
#> 5397                                <NA>          NA     All schools
#> 5398                                <NA>          NA         Primary
#> 5399                                <NA>          NA       Secondary
#> 5400                                <NA>          NA         Special
#> 5401                               Derby         831     All schools
#> 5402                               Derby         831         Primary
#> 5403                               Derby         831       Secondary
#> 5404                               Derby         831         Special
#> 5405                           Leicester         856     All schools
#> 5406                           Leicester         856         Primary
#> 5407                           Leicester         856       Secondary
#> 5408                           Leicester         856         Special
#> 5409                             Rutland         857     All schools
#> 5410                             Rutland         857         Primary
#> 5411                             Rutland         857       Secondary
#> 5412                          Nottingham         892     All schools
#> 5413                          Nottingham         892         Primary
#> 5414                          Nottingham         892       Secondary
#> 5415                          Nottingham         892         Special
#> 5416              North Northamptonshire         940     All schools
#> 5417              North Northamptonshire         940         Primary
#> 5418              North Northamptonshire         940       Secondary
#> 5419              North Northamptonshire         940         Special
#> 5420               West Northamptonshire         941     All schools
#> 5421               West Northamptonshire         941         Primary
#> 5422               West Northamptonshire         941       Secondary
#> 5423               West Northamptonshire         941         Special
#> 5424                          Derbyshire         830     All schools
#> 5425                          Derbyshire         830         Primary
#> 5426                          Derbyshire         830       Secondary
#> 5427                          Derbyshire         830         Special
#> 5428                      Leicestershire         855     All schools
#> 5429                      Leicestershire         855         Primary
#> 5430                      Leicestershire         855       Secondary
#> 5431                      Leicestershire         855         Special
#> 5432                        Lincolnshire         925     All schools
#> 5433                        Lincolnshire         925         Primary
#> 5434                        Lincolnshire         925       Secondary
#> 5435                        Lincolnshire         925         Special
#> 5436                     Nottinghamshire         891     All schools
#> 5437                     Nottinghamshire         891         Primary
#> 5438                     Nottinghamshire         891       Secondary
#> 5439                     Nottinghamshire         891         Special
#> 5440                                <NA>          NA     All schools
#> 5441                                <NA>          NA         Primary
#> 5442                                <NA>          NA       Secondary
#> 5443                                <NA>          NA         Special
#> 5444            Herefordshire, County of         884     All schools
#> 5445            Herefordshire, County of         884         Primary
#> 5446            Herefordshire, County of         884       Secondary
#> 5447            Herefordshire, County of         884         Special
#> 5448                  Telford and Wrekin         894     All schools
#> 5449                  Telford and Wrekin         894         Primary
#> 5450                  Telford and Wrekin         894       Secondary
#> 5451                  Telford and Wrekin         894         Special
#> 5452                      Stoke-on-Trent         861     All schools
#> 5453                      Stoke-on-Trent         861         Primary
#> 5454                      Stoke-on-Trent         861       Secondary
#> 5455                      Stoke-on-Trent         861         Special
#> 5456                          Shropshire         893     All schools
#> 5457                          Shropshire         893         Primary
#> 5458                          Shropshire         893       Secondary
#> 5459                          Shropshire         893         Special
#> 5460                          Birmingham         330     All schools
#> 5461                          Birmingham         330         Primary
#> 5462                          Birmingham         330       Secondary
#> 5463                          Birmingham         330         Special
#> 5464                            Coventry         331     All schools
#> 5465                            Coventry         331         Primary
#> 5466                            Coventry         331       Secondary
#> 5467                            Coventry         331         Special
#> 5468                              Dudley         332     All schools
#> 5469                              Dudley         332         Primary
#> 5470                              Dudley         332       Secondary
#> 5471                              Dudley         332         Special
#> 5472                            Sandwell         333     All schools
#> 5473                            Sandwell         333         Primary
#> 5474                            Sandwell         333       Secondary
#> 5475                            Sandwell         333         Special
#> 5476                            Solihull         334     All schools
#> 5477                            Solihull         334         Primary
#> 5478                            Solihull         334       Secondary
#> 5479                            Solihull         334         Special
#> 5480                             Walsall         335     All schools
#> 5481                             Walsall         335         Primary
#> 5482                             Walsall         335       Secondary
#> 5483                             Walsall         335         Special
#> 5484                       Wolverhampton         336     All schools
#> 5485                       Wolverhampton         336         Primary
#> 5486                       Wolverhampton         336       Secondary
#> 5487                       Wolverhampton         336         Special
#> 5488                       Staffordshire         860     All schools
#> 5489                       Staffordshire         860         Primary
#> 5490                       Staffordshire         860       Secondary
#> 5491                       Staffordshire         860         Special
#> 5492                        Warwickshire         937     All schools
#> 5493                        Warwickshire         937         Primary
#> 5494                        Warwickshire         937       Secondary
#> 5495                        Warwickshire         937         Special
#> 5496                      Worcestershire         885     All schools
#> 5497                      Worcestershire         885         Primary
#> 5498                      Worcestershire         885       Secondary
#> 5499                      Worcestershire         885         Special
#> 5500                                <NA>          NA     All schools
#> 5501                                <NA>          NA         Primary
#> 5502                                <NA>          NA       Secondary
#> 5503                                <NA>          NA         Special
#> 5504                        Peterborough         874     All schools
#> 5505                        Peterborough         874         Primary
#> 5506                        Peterborough         874       Secondary
#> 5507                        Peterborough         874         Special
#> 5508                               Luton         821     All schools
#> 5509                               Luton         821         Primary
#> 5510                               Luton         821       Secondary
#> 5511                               Luton         821         Special
#> 5512                     Southend-on-Sea         882     All schools
#> 5513                     Southend-on-Sea         882         Primary
#> 5514                     Southend-on-Sea         882       Secondary
#> 5515                     Southend-on-Sea         882         Special
#> 5516                            Thurrock         883     All schools
#> 5517                            Thurrock         883         Primary
#> 5518                            Thurrock         883       Secondary
#> 5519                            Thurrock         883         Special
#> 5520                             Bedford         822     All schools
#> 5521                             Bedford         822         Primary
#> 5522                             Bedford         822       Secondary
#> 5523                             Bedford         822         Special
#> 5524                Central Bedfordshire         823     All schools
#> 5525                Central Bedfordshire         823         Primary
#> 5526                Central Bedfordshire         823       Secondary
#> 5527                Central Bedfordshire         823         Special
#> 5528                      Cambridgeshire         873     All schools
#> 5529                      Cambridgeshire         873         Primary
#> 5530                      Cambridgeshire         873       Secondary
#> 5531                      Cambridgeshire         873         Special
#> 5532                               Essex         881     All schools
#> 5533                               Essex         881         Primary
#> 5534                               Essex         881       Secondary
#> 5535                               Essex         881         Special
#> 5536                       Hertfordshire         919     All schools
#> 5537                       Hertfordshire         919         Primary
#> 5538                       Hertfordshire         919       Secondary
#> 5539                       Hertfordshire         919         Special
#> 5540                             Norfolk         926     All schools
#> 5541                             Norfolk         926         Primary
#> 5542                             Norfolk         926       Secondary
#> 5543                             Norfolk         926         Special
#> 5544                             Suffolk         935     All schools
#> 5545                             Suffolk         935         Primary
#> 5546                             Suffolk         935       Secondary
#> 5547                             Suffolk         935         Special
#> 5548                                <NA>          NA     All schools
#> 5549                                <NA>          NA         Primary
#> 5550                                <NA>          NA       Secondary
#> 5551                                <NA>          NA         Special
#> 5552                      City of London         201     All schools
#> 5553                      City of London         201         Primary
#> 5554                Barking and Dagenham         301     All schools
#> 5555                Barking and Dagenham         301         Primary
#> 5556                Barking and Dagenham         301       Secondary
#> 5557                Barking and Dagenham         301         Special
#> 5558                              Barnet         302     All schools
#> 5559                              Barnet         302         Primary
#> 5560                              Barnet         302       Secondary
#> 5561                              Barnet         302         Special
#> 5562                              Bexley         303     All schools
#> 5563                              Bexley         303         Primary
#> 5564                              Bexley         303       Secondary
#> 5565                              Bexley         303         Special
#> 5566                               Brent         304     All schools
#> 5567                               Brent         304         Primary
#> 5568                               Brent         304       Secondary
#> 5569                               Brent         304         Special
#> 5570                             Bromley         305     All schools
#> 5571                             Bromley         305         Primary
#> 5572                             Bromley         305       Secondary
#> 5573                             Bromley         305         Special
#> 5574                              Camden         202     All schools
#> 5575                              Camden         202         Primary
#> 5576                              Camden         202       Secondary
#> 5577                              Camden         202         Special
#> 5578                             Croydon         306     All schools
#> 5579                             Croydon         306         Primary
#> 5580                             Croydon         306       Secondary
#> 5581                             Croydon         306         Special
#> 5582                              Ealing         307     All schools
#> 5583                              Ealing         307         Primary
#> 5584                              Ealing         307       Secondary
#> 5585                              Ealing         307         Special
#> 5586                             Enfield         308     All schools
#> 5587                             Enfield         308         Primary
#> 5588                             Enfield         308       Secondary
#> 5589                             Enfield         308         Special
#> 5590                           Greenwich         203     All schools
#> 5591                           Greenwich         203         Primary
#> 5592                           Greenwich         203       Secondary
#> 5593                           Greenwich         203         Special
#> 5594                             Hackney         204     All schools
#> 5595                             Hackney         204         Primary
#> 5596                             Hackney         204       Secondary
#> 5597                             Hackney         204         Special
#> 5598              Hammersmith and Fulham         205     All schools
#> 5599              Hammersmith and Fulham         205         Primary
#> 5600              Hammersmith and Fulham         205       Secondary
#> 5601              Hammersmith and Fulham         205         Special
#> 5602                            Haringey         309     All schools
#> 5603                            Haringey         309         Primary
#> 5604                            Haringey         309       Secondary
#> 5605                            Haringey         309         Special
#> 5606                              Harrow         310     All schools
#> 5607                              Harrow         310         Primary
#> 5608                              Harrow         310       Secondary
#> 5609                              Harrow         310         Special
#> 5610                            Havering         311     All schools
#> 5611                            Havering         311         Primary
#> 5612                            Havering         311       Secondary
#> 5613                            Havering         311         Special
#> 5614                          Hillingdon         312     All schools
#> 5615                          Hillingdon         312         Primary
#> 5616                          Hillingdon         312       Secondary
#> 5617                          Hillingdon         312         Special
#> 5618                            Hounslow         313     All schools
#> 5619                            Hounslow         313         Primary
#> 5620                            Hounslow         313       Secondary
#> 5621                            Hounslow         313         Special
#> 5622                           Islington         206     All schools
#> 5623                           Islington         206         Primary
#> 5624                           Islington         206       Secondary
#> 5625                           Islington         206         Special
#> 5626              Kensington and Chelsea         207     All schools
#> 5627              Kensington and Chelsea         207         Primary
#> 5628              Kensington and Chelsea         207       Secondary
#> 5629              Kensington and Chelsea         207         Special
#> 5630                Kingston upon Thames         314     All schools
#> 5631                Kingston upon Thames         314         Primary
#> 5632                Kingston upon Thames         314       Secondary
#> 5633                Kingston upon Thames         314         Special
#> 5634                             Lambeth         208     All schools
#> 5635                             Lambeth         208         Primary
#> 5636                             Lambeth         208       Secondary
#> 5637                             Lambeth         208         Special
#> 5638                            Lewisham         209     All schools
#> 5639                            Lewisham         209         Primary
#> 5640                            Lewisham         209       Secondary
#> 5641                            Lewisham         209         Special
#> 5642                              Merton         315     All schools
#> 5643                              Merton         315         Primary
#> 5644                              Merton         315       Secondary
#> 5645                              Merton         315         Special
#> 5646                              Newham         316     All schools
#> 5647                              Newham         316         Primary
#> 5648                              Newham         316       Secondary
#> 5649                              Newham         316         Special
#> 5650                           Redbridge         317     All schools
#> 5651                           Redbridge         317         Primary
#> 5652                           Redbridge         317       Secondary
#> 5653                           Redbridge         317         Special
#> 5654                Richmond upon Thames         318     All schools
#> 5655                Richmond upon Thames         318         Primary
#> 5656                Richmond upon Thames         318       Secondary
#> 5657                Richmond upon Thames         318         Special
#> 5658                           Southwark         210     All schools
#> 5659                           Southwark         210         Primary
#> 5660                           Southwark         210       Secondary
#> 5661                           Southwark         210         Special
#> 5662                              Sutton         319     All schools
#> 5663                              Sutton         319         Primary
#> 5664                              Sutton         319       Secondary
#> 5665                              Sutton         319         Special
#> 5666                       Tower Hamlets         211     All schools
#> 5667                       Tower Hamlets         211         Primary
#> 5668                       Tower Hamlets         211       Secondary
#> 5669                       Tower Hamlets         211         Special
#> 5670                      Waltham Forest         320     All schools
#> 5671                      Waltham Forest         320         Primary
#> 5672                      Waltham Forest         320       Secondary
#> 5673                      Waltham Forest         320         Special
#> 5674                          Wandsworth         212     All schools
#> 5675                          Wandsworth         212         Primary
#> 5676                          Wandsworth         212       Secondary
#> 5677                          Wandsworth         212         Special
#> 5678                         Westminster         213     All schools
#> 5679                         Westminster         213         Primary
#> 5680                         Westminster         213       Secondary
#> 5681                         Westminster         213         Special
#> 5682                                <NA>          NA     All schools
#> 5683                                <NA>          NA         Primary
#> 5684                                <NA>          NA       Secondary
#> 5685                                <NA>          NA         Special
#> 5686                              Medway         887     All schools
#> 5687                              Medway         887         Primary
#> 5688                              Medway         887       Secondary
#> 5689                              Medway         887         Special
#> 5690                    Bracknell Forest         867     All schools
#> 5691                    Bracknell Forest         867         Primary
#> 5692                    Bracknell Forest         867       Secondary
#> 5693                    Bracknell Forest         867         Special
#> 5694                      West Berkshire         869     All schools
#> 5695                      West Berkshire         869         Primary
#> 5696                      West Berkshire         869       Secondary
#> 5697                      West Berkshire         869         Special
#> 5698                             Reading         870     All schools
#> 5699                             Reading         870         Primary
#> 5700                             Reading         870       Secondary
#> 5701                             Reading         870         Special
#> 5702                              Slough         871     All schools
#> 5703                              Slough         871         Primary
#> 5704                              Slough         871       Secondary
#> 5705                              Slough         871         Special
#> 5706              Windsor and Maidenhead         868     All schools
#> 5707              Windsor and Maidenhead         868         Primary
#> 5708              Windsor and Maidenhead         868       Secondary
#> 5709              Windsor and Maidenhead         868         Special
#> 5710                           Wokingham         872     All schools
#> 5711                           Wokingham         872         Primary
#> 5712                           Wokingham         872       Secondary
#> 5713                           Wokingham         872         Special
#> 5714                       Milton Keynes         826     All schools
#> 5715                       Milton Keynes         826         Primary
#> 5716                       Milton Keynes         826       Secondary
#> 5717                       Milton Keynes         826         Special
#> 5718                   Brighton and Hove         846     All schools
#> 5719                   Brighton and Hove         846         Primary
#> 5720                   Brighton and Hove         846       Secondary
#> 5721                   Brighton and Hove         846         Special
#> 5722                          Portsmouth         851     All schools
#> 5723                          Portsmouth         851         Primary
#> 5724                          Portsmouth         851       Secondary
#> 5725                          Portsmouth         851         Special
#> 5726                         Southampton         852     All schools
#> 5727                         Southampton         852         Primary
#> 5728                         Southampton         852       Secondary
#> 5729                         Southampton         852         Special
#> 5730                       Isle of Wight         921     All schools
#> 5731                       Isle of Wight         921         Primary
#> 5732                       Isle of Wight         921       Secondary
#> 5733                       Isle of Wight         921         Special
#> 5734                     Buckinghamshire         825     All schools
#> 5735                     Buckinghamshire         825         Primary
#> 5736                     Buckinghamshire         825       Secondary
#> 5737                     Buckinghamshire         825         Special
#> 5738                         East Sussex         845     All schools
#> 5739                         East Sussex         845         Primary
#> 5740                         East Sussex         845       Secondary
#> 5741                         East Sussex         845         Special
#> 5742                           Hampshire         850     All schools
#> 5743                           Hampshire         850         Primary
#> 5744                           Hampshire         850       Secondary
#> 5745                           Hampshire         850         Special
#> 5746                                Kent         886     All schools
#> 5747                                Kent         886         Primary
#> 5748                                Kent         886       Secondary
#> 5749                                Kent         886         Special
#> 5750                         Oxfordshire         931     All schools
#> 5751                         Oxfordshire         931         Primary
#> 5752                         Oxfordshire         931       Secondary
#> 5753                         Oxfordshire         931         Special
#> 5754                              Surrey         936     All schools
#> 5755                              Surrey         936         Primary
#> 5756                              Surrey         936       Secondary
#> 5757                              Surrey         936         Special
#> 5758                         West Sussex         938     All schools
#> 5759                         West Sussex         938         Primary
#> 5760                         West Sussex         938       Secondary
#> 5761                         West Sussex         938         Special
#> 5762                                <NA>          NA     All schools
#> 5763                                <NA>          NA         Primary
#> 5764                                <NA>          NA       Secondary
#> 5765                                <NA>          NA         Special
#> 5766        Bath and North East Somerset         800     All schools
#> 5767        Bath and North East Somerset         800         Primary
#> 5768        Bath and North East Somerset         800       Secondary
#> 5769        Bath and North East Somerset         800         Special
#> 5770                    Bristol, City of         801     All schools
#> 5771                    Bristol, City of         801         Primary
#> 5772                    Bristol, City of         801       Secondary
#> 5773                    Bristol, City of         801         Special
#> 5774                      North Somerset         802     All schools
#> 5775                      North Somerset         802         Primary
#> 5776                      North Somerset         802       Secondary
#> 5777                      North Somerset         802         Special
#> 5778               South Gloucestershire         803     All schools
#> 5779               South Gloucestershire         803         Primary
#> 5780               South Gloucestershire         803       Secondary
#> 5781               South Gloucestershire         803         Special
#> 5782                            Plymouth         879     All schools
#> 5783                            Plymouth         879         Primary
#> 5784                            Plymouth         879       Secondary
#> 5785                            Plymouth         879         Special
#> 5786                              Torbay         880     All schools
#> 5787                              Torbay         880         Primary
#> 5788                              Torbay         880       Secondary
#> 5789                              Torbay         880         Special
#> 5790                             Swindon         866     All schools
#> 5791                             Swindon         866         Primary
#> 5792                             Swindon         866       Secondary
#> 5793                             Swindon         866         Special
#> 5794                            Cornwall         908     All schools
#> 5795                            Cornwall         908         Primary
#> 5796                            Cornwall         908       Secondary
#> 5797                            Cornwall         908         Special
#> 5798                     Isles of Scilly         420     All schools
#> 5799                     Isles of Scilly         420       Secondary
#> 5800                           Wiltshire         865     All schools
#> 5801                           Wiltshire         865         Primary
#> 5802                           Wiltshire         865       Secondary
#> 5803                           Wiltshire         865         Special
#> 5804 Bournemouth, Christchurch and Poole         839     All schools
#> 5805 Bournemouth, Christchurch and Poole         839         Primary
#> 5806 Bournemouth, Christchurch and Poole         839       Secondary
#> 5807 Bournemouth, Christchurch and Poole         839         Special
#> 5808                              Dorset         838     All schools
#> 5809                              Dorset         838         Primary
#> 5810                              Dorset         838       Secondary
#> 5811                              Dorset         838         Special
#> 5812                            Somerset         933     All schools
#> 5813                            Somerset         933         Primary
#> 5814                            Somerset         933       Secondary
#> 5815                            Somerset         933         Special
#> 5816                               Devon         878     All schools
#> 5817                               Devon         878         Primary
#> 5818                               Devon         878       Secondary
#> 5819                               Devon         878         Special
#> 5820                     Gloucestershire         916     All schools
#> 5821                     Gloucestershire         916         Primary
#> 5822                     Gloucestershire         916       Secondary
#> 5823                     Gloucestershire         916         Special
#> 5824                                <NA>          NA     All schools
#> 5825                                <NA>          NA         Primary
#> 5826                                <NA>          NA       Secondary
#> 5827                                <NA>          NA         Special
#> 5828                                <NA>          NA     All schools
#> 5829                                <NA>          NA         Primary
#> 5830                                <NA>          NA       Secondary
#> 5831                                <NA>          NA         Special
#> 5832                          Hartlepool         805     All schools
#> 5833                          Hartlepool         805         Primary
#> 5834                          Hartlepool         805       Secondary
#> 5835                          Hartlepool         805         Special
#> 5836                       Middlesbrough         806     All schools
#> 5837                       Middlesbrough         806         Primary
#> 5838                       Middlesbrough         806       Secondary
#> 5839                       Middlesbrough         806         Special
#> 5840                Redcar and Cleveland         807     All schools
#> 5841                Redcar and Cleveland         807         Primary
#> 5842                Redcar and Cleveland         807       Secondary
#> 5843                Redcar and Cleveland         807         Special
#> 5844                    Stockton-on-Tees         808     All schools
#> 5845                    Stockton-on-Tees         808         Primary
#> 5846                    Stockton-on-Tees         808       Secondary
#> 5847                    Stockton-on-Tees         808         Special
#> 5848                          Darlington         841     All schools
#> 5849                          Darlington         841         Primary
#> 5850                          Darlington         841       Secondary
#> 5851                          Darlington         841         Special
#> 5852                       County Durham         840     All schools
#> 5853                       County Durham         840         Primary
#> 5854                       County Durham         840       Secondary
#> 5855                       County Durham         840         Special
#> 5856                      Northumberland         929     All schools
#> 5857                      Northumberland         929         Primary
#> 5858                      Northumberland         929       Secondary
#> 5859                      Northumberland         929         Special
#> 5860                 Newcastle upon Tyne         391     All schools
#> 5861                 Newcastle upon Tyne         391         Primary
#> 5862                 Newcastle upon Tyne         391       Secondary
#> 5863                 Newcastle upon Tyne         391         Special
#> 5864                      North Tyneside         392     All schools
#> 5865                      North Tyneside         392         Primary
#> 5866                      North Tyneside         392       Secondary
#> 5867                      North Tyneside         392         Special
#> 5868                      South Tyneside         393     All schools
#> 5869                      South Tyneside         393         Primary
#> 5870                      South Tyneside         393       Secondary
#> 5871                      South Tyneside         393         Special
#> 5872                          Sunderland         394     All schools
#> 5873                          Sunderland         394         Primary
#> 5874                          Sunderland         394       Secondary
#> 5875                          Sunderland         394         Special
#> 5876                           Gateshead         390     All schools
#> 5877                           Gateshead         390         Primary
#> 5878                           Gateshead         390       Secondary
#> 5879                           Gateshead         390         Special
#> 5880                                <NA>          NA     All schools
#> 5881                                <NA>          NA         Primary
#> 5882                                <NA>          NA       Secondary
#> 5883                                <NA>          NA         Special
#> 5884                              Halton         876     All schools
#> 5885                              Halton         876         Primary
#> 5886                              Halton         876       Secondary
#> 5887                              Halton         876         Special
#> 5888                          Warrington         877     All schools
#> 5889                          Warrington         877         Primary
#> 5890                          Warrington         877       Secondary
#> 5891                          Warrington         877         Special
#> 5892               Blackburn with Darwen         889     All schools
#> 5893               Blackburn with Darwen         889         Primary
#> 5894               Blackburn with Darwen         889       Secondary
#> 5895               Blackburn with Darwen         889         Special
#> 5896                           Blackpool         890     All schools
#> 5897                           Blackpool         890         Primary
#> 5898                           Blackpool         890       Secondary
#> 5899                           Blackpool         890         Special
#> 5900                       Cheshire East         895     All schools
#> 5901                       Cheshire East         895         Primary
#> 5902                       Cheshire East         895       Secondary
#> 5903                       Cheshire East         895         Special
#> 5904           Cheshire West and Chester         896     All schools
#> 5905           Cheshire West and Chester         896         Primary
#> 5906           Cheshire West and Chester         896       Secondary
#> 5907           Cheshire West and Chester         896         Special
#> 5908                          Cumberland         942     All schools
#> 5909                          Cumberland         942         Primary
#> 5910                          Cumberland         942       Secondary
#> 5911                          Cumberland         942         Special
#> 5912             Westmorland and Furness         943     All schools
#> 5913             Westmorland and Furness         943         Primary
#> 5914             Westmorland and Furness         943       Secondary
#> 5915             Westmorland and Furness         943         Special
#> 5916                              Bolton         350     All schools
#> 5917                              Bolton         350         Primary
#> 5918                              Bolton         350       Secondary
#> 5919                              Bolton         350         Special
#> 5920                                Bury         351     All schools
#> 5921                                Bury         351         Primary
#> 5922                                Bury         351       Secondary
#> 5923                                Bury         351         Special
#> 5924                          Manchester         352     All schools
#> 5925                          Manchester         352         Primary
#> 5926                          Manchester         352       Secondary
#> 5927                          Manchester         352         Special
#> 5928                              Oldham         353     All schools
#> 5929                              Oldham         353         Primary
#> 5930                              Oldham         353       Secondary
#> 5931                              Oldham         353         Special
#> 5932                            Rochdale         354     All schools
#> 5933                            Rochdale         354         Primary
#> 5934                            Rochdale         354       Secondary
#> 5935                            Rochdale         354         Special
#> 5936                             Salford         355     All schools
#> 5937                             Salford         355         Primary
#> 5938                             Salford         355       Secondary
#> 5939                             Salford         355         Special
#> 5940                           Stockport         356     All schools
#> 5941                           Stockport         356         Primary
#> 5942                           Stockport         356       Secondary
#> 5943                           Stockport         356         Special
#> 5944                            Tameside         357     All schools
#> 5945                            Tameside         357         Primary
#> 5946                            Tameside         357       Secondary
#> 5947                            Tameside         357         Special
#> 5948                            Trafford         358     All schools
#> 5949                            Trafford         358         Primary
#> 5950                            Trafford         358       Secondary
#> 5951                            Trafford         358         Special
#> 5952                               Wigan         359     All schools
#> 5953                               Wigan         359         Primary
#> 5954                               Wigan         359       Secondary
#> 5955                               Wigan         359         Special
#> 5956                            Knowsley         340     All schools
#> 5957                            Knowsley         340         Primary
#> 5958                            Knowsley         340       Secondary
#> 5959                            Knowsley         340         Special
#> 5960                           Liverpool         341     All schools
#> 5961                           Liverpool         341         Primary
#> 5962                           Liverpool         341       Secondary
#> 5963                           Liverpool         341         Special
#> 5964                          St. Helens         342     All schools
#> 5965                          St. Helens         342         Primary
#> 5966                          St. Helens         342       Secondary
#> 5967                          St. Helens         342         Special
#> 5968                              Sefton         343     All schools
#> 5969                              Sefton         343         Primary
#> 5970                              Sefton         343       Secondary
#> 5971                              Sefton         343         Special
#> 5972                              Wirral         344     All schools
#> 5973                              Wirral         344         Primary
#> 5974                              Wirral         344       Secondary
#> 5975                              Wirral         344         Special
#> 5976                          Lancashire         888     All schools
#> 5977                          Lancashire         888         Primary
#> 5978                          Lancashire         888       Secondary
#> 5979                          Lancashire         888         Special
#> 5980                                <NA>          NA     All schools
#> 5981                                <NA>          NA         Primary
#> 5982                                <NA>          NA       Secondary
#> 5983                                <NA>          NA         Special
#> 5984         Kingston upon Hull, City of         810     All schools
#> 5985         Kingston upon Hull, City of         810         Primary
#> 5986         Kingston upon Hull, City of         810       Secondary
#> 5987         Kingston upon Hull, City of         810         Special
#> 5988            East Riding of Yorkshire         811     All schools
#> 5989            East Riding of Yorkshire         811         Primary
#> 5990            East Riding of Yorkshire         811       Secondary
#> 5991            East Riding of Yorkshire         811         Special
#> 5992             North East Lincolnshire         812     All schools
#> 5993             North East Lincolnshire         812         Primary
#> 5994             North East Lincolnshire         812       Secondary
#> 5995             North East Lincolnshire         812         Special
#> 5996                  North Lincolnshire         813     All schools
#> 5997                  North Lincolnshire         813         Primary
#> 5998                  North Lincolnshire         813       Secondary
#> 5999                  North Lincolnshire         813         Special
#> 6000                                York         816     All schools
#> 6001                                York         816         Primary
#> 6002                                York         816       Secondary
#> 6003                                York         816         Special
#> 6004                     North Yorkshire         815     All schools
#> 6005                     North Yorkshire         815         Primary
#> 6006                     North Yorkshire         815       Secondary
#> 6007                     North Yorkshire         815         Special
#> 6008                            Barnsley         370     All schools
#> 6009                            Barnsley         370         Primary
#> 6010                            Barnsley         370       Secondary
#> 6011                            Barnsley         370         Special
#> 6012                           Doncaster         371     All schools
#> 6013                           Doncaster         371         Primary
#> 6014                           Doncaster         371       Secondary
#> 6015                           Doncaster         371         Special
#> 6016                           Rotherham         372     All schools
#> 6017                           Rotherham         372         Primary
#> 6018                           Rotherham         372       Secondary
#> 6019                           Rotherham         372         Special
#> 6020                           Sheffield         373     All schools
#> 6021                           Sheffield         373         Primary
#> 6022                           Sheffield         373       Secondary
#> 6023                           Sheffield         373         Special
#> 6024                            Bradford         380     All schools
#> 6025                            Bradford         380         Primary
#> 6026                            Bradford         380       Secondary
#> 6027                            Bradford         380         Special
#> 6028                          Calderdale         381     All schools
#> 6029                          Calderdale         381         Primary
#> 6030                          Calderdale         381       Secondary
#> 6031                          Calderdale         381         Special
#> 6032                            Kirklees         382     All schools
#> 6033                            Kirklees         382         Primary
#> 6034                            Kirklees         382       Secondary
#> 6035                            Kirklees         382         Special
#> 6036                               Leeds         383     All schools
#> 6037                               Leeds         383         Primary
#> 6038                               Leeds         383       Secondary
#> 6039                               Leeds         383         Special
#> 6040                           Wakefield         384     All schools
#> 6041                           Wakefield         384         Primary
#> 6042                           Wakefield         384       Secondary
#> 6043                           Wakefield         384         Special
#> 6044                                <NA>          NA     All schools
#> 6045                                <NA>          NA         Primary
#> 6046                                <NA>          NA       Secondary
#> 6047                                <NA>          NA         Special
#> 6048                               Derby         831     All schools
#> 6049                               Derby         831         Primary
#> 6050                               Derby         831       Secondary
#> 6051                               Derby         831         Special
#> 6052                           Leicester         856     All schools
#> 6053                           Leicester         856         Primary
#> 6054                           Leicester         856       Secondary
#> 6055                           Leicester         856         Special
#> 6056                             Rutland         857     All schools
#> 6057                             Rutland         857         Primary
#> 6058                             Rutland         857       Secondary
#> 6059                          Nottingham         892     All schools
#> 6060                          Nottingham         892         Primary
#> 6061                          Nottingham         892       Secondary
#> 6062                          Nottingham         892         Special
#> 6063              North Northamptonshire         940     All schools
#> 6064              North Northamptonshire         940         Primary
#> 6065              North Northamptonshire         940       Secondary
#> 6066              North Northamptonshire         940         Special
#> 6067               West Northamptonshire         941     All schools
#> 6068               West Northamptonshire         941         Primary
#> 6069               West Northamptonshire         941       Secondary
#> 6070               West Northamptonshire         941         Special
#> 6071                          Derbyshire         830     All schools
#> 6072                          Derbyshire         830         Primary
#> 6073                          Derbyshire         830       Secondary
#> 6074                          Derbyshire         830         Special
#> 6075                      Leicestershire         855     All schools
#> 6076                      Leicestershire         855         Primary
#> 6077                      Leicestershire         855       Secondary
#> 6078                      Leicestershire         855         Special
#> 6079                        Lincolnshire         925     All schools
#> 6080                        Lincolnshire         925         Primary
#> 6081                        Lincolnshire         925       Secondary
#> 6082                        Lincolnshire         925         Special
#> 6083                     Nottinghamshire         891     All schools
#> 6084                     Nottinghamshire         891         Primary
#> 6085                     Nottinghamshire         891       Secondary
#> 6086                     Nottinghamshire         891         Special
#> 6087                                <NA>          NA     All schools
#> 6088                                <NA>          NA         Primary
#> 6089                                <NA>          NA       Secondary
#> 6090                                <NA>          NA         Special
#> 6091            Herefordshire, County of         884     All schools
#> 6092            Herefordshire, County of         884         Primary
#> 6093            Herefordshire, County of         884       Secondary
#> 6094            Herefordshire, County of         884         Special
#> 6095                  Telford and Wrekin         894     All schools
#> 6096                  Telford and Wrekin         894         Primary
#> 6097                  Telford and Wrekin         894       Secondary
#> 6098                  Telford and Wrekin         894         Special
#> 6099                      Stoke-on-Trent         861     All schools
#> 6100                      Stoke-on-Trent         861         Primary
#> 6101                      Stoke-on-Trent         861       Secondary
#> 6102                      Stoke-on-Trent         861         Special
#> 6103                          Shropshire         893     All schools
#> 6104                          Shropshire         893         Primary
#> 6105                          Shropshire         893       Secondary
#> 6106                          Shropshire         893         Special
#> 6107                          Birmingham         330     All schools
#> 6108                          Birmingham         330         Primary
#> 6109                          Birmingham         330       Secondary
#> 6110                          Birmingham         330         Special
#> 6111                            Coventry         331     All schools
#> 6112                            Coventry         331         Primary
#> 6113                            Coventry         331       Secondary
#> 6114                            Coventry         331         Special
#> 6115                              Dudley         332     All schools
#> 6116                              Dudley         332         Primary
#> 6117                              Dudley         332       Secondary
#> 6118                              Dudley         332         Special
#> 6119                            Sandwell         333     All schools
#> 6120                            Sandwell         333         Primary
#> 6121                            Sandwell         333       Secondary
#> 6122                            Sandwell         333         Special
#> 6123                            Solihull         334     All schools
#> 6124                            Solihull         334         Primary
#> 6125                            Solihull         334       Secondary
#> 6126                            Solihull         334         Special
#> 6127                             Walsall         335     All schools
#> 6128                             Walsall         335         Primary
#> 6129                             Walsall         335       Secondary
#> 6130                             Walsall         335         Special
#> 6131                       Wolverhampton         336     All schools
#> 6132                       Wolverhampton         336         Primary
#> 6133                       Wolverhampton         336       Secondary
#> 6134                       Wolverhampton         336         Special
#> 6135                       Staffordshire         860     All schools
#> 6136                       Staffordshire         860         Primary
#> 6137                       Staffordshire         860       Secondary
#> 6138                       Staffordshire         860         Special
#> 6139                        Warwickshire         937     All schools
#> 6140                        Warwickshire         937         Primary
#> 6141                        Warwickshire         937       Secondary
#> 6142                        Warwickshire         937         Special
#> 6143                      Worcestershire         885     All schools
#> 6144                      Worcestershire         885         Primary
#> 6145                      Worcestershire         885       Secondary
#> 6146                      Worcestershire         885         Special
#> 6147                                <NA>          NA     All schools
#> 6148                                <NA>          NA         Primary
#> 6149                                <NA>          NA       Secondary
#> 6150                                <NA>          NA         Special
#> 6151                        Peterborough         874     All schools
#> 6152                        Peterborough         874         Primary
#> 6153                        Peterborough         874       Secondary
#> 6154                        Peterborough         874         Special
#> 6155                               Luton         821     All schools
#> 6156                               Luton         821         Primary
#> 6157                               Luton         821       Secondary
#> 6158                               Luton         821         Special
#> 6159                     Southend-on-Sea         882     All schools
#> 6160                     Southend-on-Sea         882         Primary
#> 6161                     Southend-on-Sea         882       Secondary
#> 6162                     Southend-on-Sea         882         Special
#> 6163                            Thurrock         883     All schools
#> 6164                            Thurrock         883         Primary
#> 6165                            Thurrock         883       Secondary
#> 6166                            Thurrock         883         Special
#> 6167                             Bedford         822     All schools
#> 6168                             Bedford         822         Primary
#> 6169                             Bedford         822       Secondary
#> 6170                             Bedford         822         Special
#> 6171                Central Bedfordshire         823     All schools
#> 6172                Central Bedfordshire         823         Primary
#> 6173                Central Bedfordshire         823       Secondary
#> 6174                Central Bedfordshire         823         Special
#> 6175                      Cambridgeshire         873     All schools
#> 6176                      Cambridgeshire         873         Primary
#> 6177                      Cambridgeshire         873       Secondary
#> 6178                      Cambridgeshire         873         Special
#> 6179                               Essex         881     All schools
#> 6180                               Essex         881         Primary
#> 6181                               Essex         881       Secondary
#> 6182                               Essex         881         Special
#> 6183                       Hertfordshire         919     All schools
#> 6184                       Hertfordshire         919         Primary
#> 6185                       Hertfordshire         919       Secondary
#> 6186                       Hertfordshire         919         Special
#> 6187                             Norfolk         926     All schools
#> 6188                             Norfolk         926         Primary
#> 6189                             Norfolk         926       Secondary
#> 6190                             Norfolk         926         Special
#> 6191                             Suffolk         935     All schools
#> 6192                             Suffolk         935         Primary
#> 6193                             Suffolk         935       Secondary
#> 6194                             Suffolk         935         Special
#> 6195                                <NA>          NA     All schools
#> 6196                                <NA>          NA         Primary
#> 6197                                <NA>          NA       Secondary
#> 6198                                <NA>          NA         Special
#> 6199                      City of London         201     All schools
#> 6200                      City of London         201         Primary
#> 6201                Barking and Dagenham         301     All schools
#> 6202                Barking and Dagenham         301         Primary
#> 6203                Barking and Dagenham         301       Secondary
#> 6204                Barking and Dagenham         301         Special
#> 6205                              Barnet         302     All schools
#> 6206                              Barnet         302         Primary
#> 6207                              Barnet         302       Secondary
#> 6208                              Barnet         302         Special
#> 6209                              Bexley         303     All schools
#> 6210                              Bexley         303         Primary
#> 6211                              Bexley         303       Secondary
#> 6212                              Bexley         303         Special
#> 6213                               Brent         304     All schools
#> 6214                               Brent         304         Primary
#> 6215                               Brent         304       Secondary
#> 6216                               Brent         304         Special
#> 6217                             Bromley         305     All schools
#> 6218                             Bromley         305         Primary
#> 6219                             Bromley         305       Secondary
#> 6220                             Bromley         305         Special
#> 6221                              Camden         202     All schools
#> 6222                              Camden         202         Primary
#> 6223                              Camden         202       Secondary
#> 6224                              Camden         202         Special
#> 6225                             Croydon         306     All schools
#> 6226                             Croydon         306         Primary
#> 6227                             Croydon         306       Secondary
#> 6228                             Croydon         306         Special
#> 6229                              Ealing         307     All schools
#> 6230                              Ealing         307         Primary
#> 6231                              Ealing         307       Secondary
#> 6232                              Ealing         307         Special
#> 6233                             Enfield         308     All schools
#> 6234                             Enfield         308         Primary
#> 6235                             Enfield         308       Secondary
#> 6236                             Enfield         308         Special
#> 6237                           Greenwich         203     All schools
#> 6238                           Greenwich         203         Primary
#> 6239                           Greenwich         203       Secondary
#> 6240                           Greenwich         203         Special
#> 6241                             Hackney         204     All schools
#> 6242                             Hackney         204         Primary
#> 6243                             Hackney         204       Secondary
#> 6244                             Hackney         204         Special
#> 6245              Hammersmith and Fulham         205     All schools
#> 6246              Hammersmith and Fulham         205         Primary
#> 6247              Hammersmith and Fulham         205       Secondary
#> 6248              Hammersmith and Fulham         205         Special
#> 6249                            Haringey         309     All schools
#> 6250                            Haringey         309         Primary
#> 6251                            Haringey         309       Secondary
#> 6252                            Haringey         309         Special
#> 6253                              Harrow         310     All schools
#> 6254                              Harrow         310         Primary
#> 6255                              Harrow         310       Secondary
#> 6256                              Harrow         310         Special
#> 6257                            Havering         311     All schools
#> 6258                            Havering         311         Primary
#> 6259                            Havering         311       Secondary
#> 6260                            Havering         311         Special
#> 6261                          Hillingdon         312     All schools
#> 6262                          Hillingdon         312         Primary
#> 6263                          Hillingdon         312       Secondary
#> 6264                          Hillingdon         312         Special
#> 6265                            Hounslow         313     All schools
#> 6266                            Hounslow         313         Primary
#> 6267                            Hounslow         313       Secondary
#> 6268                            Hounslow         313         Special
#> 6269                           Islington         206     All schools
#> 6270                           Islington         206         Primary
#> 6271                           Islington         206       Secondary
#> 6272                           Islington         206         Special
#> 6273              Kensington and Chelsea         207     All schools
#> 6274              Kensington and Chelsea         207         Primary
#> 6275              Kensington and Chelsea         207       Secondary
#> 6276              Kensington and Chelsea         207         Special
#> 6277                Kingston upon Thames         314     All schools
#> 6278                Kingston upon Thames         314         Primary
#> 6279                Kingston upon Thames         314       Secondary
#> 6280                Kingston upon Thames         314         Special
#> 6281                             Lambeth         208     All schools
#> 6282                             Lambeth         208         Primary
#> 6283                             Lambeth         208       Secondary
#> 6284                             Lambeth         208         Special
#> 6285                            Lewisham         209     All schools
#> 6286                            Lewisham         209         Primary
#> 6287                            Lewisham         209       Secondary
#> 6288                            Lewisham         209         Special
#> 6289                              Merton         315     All schools
#> 6290                              Merton         315         Primary
#> 6291                              Merton         315       Secondary
#> 6292                              Merton         315         Special
#> 6293                              Newham         316     All schools
#> 6294                              Newham         316         Primary
#> 6295                              Newham         316       Secondary
#> 6296                              Newham         316         Special
#> 6297                           Redbridge         317     All schools
#> 6298                           Redbridge         317         Primary
#> 6299                           Redbridge         317       Secondary
#> 6300                           Redbridge         317         Special
#> 6301                Richmond upon Thames         318     All schools
#> 6302                Richmond upon Thames         318         Primary
#> 6303                Richmond upon Thames         318       Secondary
#> 6304                Richmond upon Thames         318         Special
#> 6305                           Southwark         210     All schools
#> 6306                           Southwark         210         Primary
#> 6307                           Southwark         210       Secondary
#> 6308                           Southwark         210         Special
#> 6309                              Sutton         319     All schools
#> 6310                              Sutton         319         Primary
#> 6311                              Sutton         319       Secondary
#> 6312                              Sutton         319         Special
#> 6313                       Tower Hamlets         211     All schools
#> 6314                       Tower Hamlets         211         Primary
#> 6315                       Tower Hamlets         211       Secondary
#> 6316                       Tower Hamlets         211         Special
#> 6317                      Waltham Forest         320     All schools
#> 6318                      Waltham Forest         320         Primary
#> 6319                      Waltham Forest         320       Secondary
#> 6320                      Waltham Forest         320         Special
#> 6321                          Wandsworth         212     All schools
#> 6322                          Wandsworth         212         Primary
#> 6323                          Wandsworth         212       Secondary
#> 6324                          Wandsworth         212         Special
#> 6325                         Westminster         213     All schools
#> 6326                         Westminster         213         Primary
#> 6327                         Westminster         213       Secondary
#> 6328                         Westminster         213         Special
#> 6329                                <NA>          NA     All schools
#> 6330                                <NA>          NA         Primary
#> 6331                                <NA>          NA       Secondary
#> 6332                                <NA>          NA         Special
#> 6333                              Medway         887     All schools
#> 6334                              Medway         887         Primary
#> 6335                              Medway         887       Secondary
#> 6336                              Medway         887         Special
#> 6337                    Bracknell Forest         867     All schools
#> 6338                    Bracknell Forest         867         Primary
#> 6339                    Bracknell Forest         867       Secondary
#> 6340                    Bracknell Forest         867         Special
#> 6341                      West Berkshire         869     All schools
#> 6342                      West Berkshire         869         Primary
#> 6343                      West Berkshire         869       Secondary
#> 6344                      West Berkshire         869         Special
#> 6345                             Reading         870     All schools
#> 6346                             Reading         870         Primary
#> 6347                             Reading         870       Secondary
#> 6348                             Reading         870         Special
#> 6349                              Slough         871     All schools
#> 6350                              Slough         871         Primary
#> 6351                              Slough         871       Secondary
#> 6352                              Slough         871         Special
#> 6353              Windsor and Maidenhead         868     All schools
#> 6354              Windsor and Maidenhead         868         Primary
#> 6355              Windsor and Maidenhead         868       Secondary
#> 6356              Windsor and Maidenhead         868         Special
#> 6357                           Wokingham         872     All schools
#> 6358                           Wokingham         872         Primary
#> 6359                           Wokingham         872       Secondary
#> 6360                           Wokingham         872         Special
#> 6361                       Milton Keynes         826     All schools
#> 6362                       Milton Keynes         826         Primary
#> 6363                       Milton Keynes         826       Secondary
#> 6364                       Milton Keynes         826         Special
#> 6365                   Brighton and Hove         846     All schools
#> 6366                   Brighton and Hove         846         Primary
#> 6367                   Brighton and Hove         846       Secondary
#> 6368                   Brighton and Hove         846         Special
#> 6369                          Portsmouth         851     All schools
#> 6370                          Portsmouth         851         Primary
#> 6371                          Portsmouth         851       Secondary
#> 6372                          Portsmouth         851         Special
#> 6373                         Southampton         852     All schools
#> 6374                         Southampton         852         Primary
#> 6375                         Southampton         852       Secondary
#> 6376                         Southampton         852         Special
#> 6377                       Isle of Wight         921     All schools
#> 6378                       Isle of Wight         921         Primary
#> 6379                       Isle of Wight         921       Secondary
#> 6380                       Isle of Wight         921         Special
#> 6381                     Buckinghamshire         825     All schools
#> 6382                     Buckinghamshire         825         Primary
#> 6383                     Buckinghamshire         825       Secondary
#> 6384                     Buckinghamshire         825         Special
#> 6385                         East Sussex         845     All schools
#> 6386                         East Sussex         845         Primary
#> 6387                         East Sussex         845       Secondary
#> 6388                         East Sussex         845         Special
#> 6389                           Hampshire         850     All schools
#> 6390                           Hampshire         850         Primary
#> 6391                           Hampshire         850       Secondary
#> 6392                           Hampshire         850         Special
#> 6393                                Kent         886     All schools
#> 6394                                Kent         886         Primary
#> 6395                                Kent         886       Secondary
#> 6396                                Kent         886         Special
#> 6397                         Oxfordshire         931     All schools
#> 6398                         Oxfordshire         931         Primary
#> 6399                         Oxfordshire         931       Secondary
#> 6400                         Oxfordshire         931         Special
#> 6401                              Surrey         936     All schools
#> 6402                              Surrey         936         Primary
#> 6403                              Surrey         936       Secondary
#> 6404                              Surrey         936         Special
#> 6405                         West Sussex         938     All schools
#> 6406                         West Sussex         938         Primary
#> 6407                         West Sussex         938       Secondary
#> 6408                         West Sussex         938         Special
#> 6409                                <NA>          NA     All schools
#> 6410                                <NA>          NA         Primary
#> 6411                                <NA>          NA       Secondary
#> 6412                                <NA>          NA         Special
#> 6413        Bath and North East Somerset         800     All schools
#> 6414        Bath and North East Somerset         800         Primary
#> 6415        Bath and North East Somerset         800       Secondary
#> 6416        Bath and North East Somerset         800         Special
#> 6417                    Bristol, City of         801     All schools
#> 6418                    Bristol, City of         801         Primary
#> 6419                    Bristol, City of         801       Secondary
#> 6420                    Bristol, City of         801         Special
#> 6421                      North Somerset         802     All schools
#> 6422                      North Somerset         802         Primary
#> 6423                      North Somerset         802       Secondary
#> 6424                      North Somerset         802         Special
#> 6425               South Gloucestershire         803     All schools
#> 6426               South Gloucestershire         803         Primary
#> 6427               South Gloucestershire         803       Secondary
#> 6428               South Gloucestershire         803         Special
#> 6429                            Plymouth         879     All schools
#> 6430                            Plymouth         879         Primary
#> 6431                            Plymouth         879       Secondary
#> 6432                            Plymouth         879         Special
#> 6433                              Torbay         880     All schools
#> 6434                              Torbay         880         Primary
#> 6435                              Torbay         880       Secondary
#> 6436                              Torbay         880         Special
#> 6437                             Swindon         866     All schools
#> 6438                             Swindon         866         Primary
#> 6439                             Swindon         866       Secondary
#> 6440                             Swindon         866         Special
#> 6441                            Cornwall         908     All schools
#> 6442                            Cornwall         908         Primary
#> 6443                            Cornwall         908       Secondary
#> 6444                            Cornwall         908         Special
#> 6445                     Isles of Scilly         420     All schools
#> 6446                     Isles of Scilly         420       Secondary
#> 6447                           Wiltshire         865     All schools
#> 6448                           Wiltshire         865         Primary
#> 6449                           Wiltshire         865       Secondary
#> 6450                           Wiltshire         865         Special
#> 6451 Bournemouth, Christchurch and Poole         839     All schools
#> 6452 Bournemouth, Christchurch and Poole         839         Primary
#> 6453 Bournemouth, Christchurch and Poole         839       Secondary
#> 6454 Bournemouth, Christchurch and Poole         839         Special
#> 6455                              Dorset         838     All schools
#> 6456                              Dorset         838         Primary
#> 6457                              Dorset         838       Secondary
#> 6458                              Dorset         838         Special
#> 6459                            Somerset         933     All schools
#> 6460                            Somerset         933         Primary
#> 6461                            Somerset         933       Secondary
#> 6462                            Somerset         933         Special
#> 6463                               Devon         878     All schools
#> 6464                               Devon         878         Primary
#> 6465                               Devon         878       Secondary
#> 6466                               Devon         878         Special
#> 6467                     Gloucestershire         916     All schools
#> 6468                     Gloucestershire         916         Primary
#> 6469                     Gloucestershire         916       Secondary
#> 6470                     Gloucestershire         916         Special
#> 6471                                <NA>          NA     All schools
#> 6472                                <NA>          NA         Primary
#> 6473                                <NA>          NA       Secondary
#> 6474                                <NA>          NA         Special
#> 6475                                <NA>          NA     All schools
#> 6476                                <NA>          NA         Primary
#> 6477                                <NA>          NA       Secondary
#> 6478                                <NA>          NA         Special
#> 6479                          Hartlepool         805     All schools
#> 6480                          Hartlepool         805         Primary
#> 6481                          Hartlepool         805       Secondary
#> 6482                          Hartlepool         805         Special
#> 6483                       Middlesbrough         806     All schools
#> 6484                       Middlesbrough         806         Primary
#> 6485                       Middlesbrough         806       Secondary
#> 6486                       Middlesbrough         806         Special
#> 6487                Redcar and Cleveland         807     All schools
#> 6488                Redcar and Cleveland         807         Primary
#> 6489                Redcar and Cleveland         807       Secondary
#> 6490                Redcar and Cleveland         807         Special
#> 6491                    Stockton-on-Tees         808     All schools
#> 6492                    Stockton-on-Tees         808         Primary
#> 6493                    Stockton-on-Tees         808       Secondary
#> 6494                    Stockton-on-Tees         808         Special
#> 6495                          Darlington         841     All schools
#> 6496                          Darlington         841         Primary
#> 6497                          Darlington         841       Secondary
#> 6498                          Darlington         841         Special
#> 6499                       County Durham         840     All schools
#> 6500                       County Durham         840         Primary
#> 6501                       County Durham         840       Secondary
#> 6502                       County Durham         840         Special
#> 6503                      Northumberland         929     All schools
#> 6504                      Northumberland         929         Primary
#> 6505                      Northumberland         929       Secondary
#> 6506                      Northumberland         929         Special
#> 6507                 Newcastle upon Tyne         391     All schools
#> 6508                 Newcastle upon Tyne         391         Primary
#> 6509                 Newcastle upon Tyne         391       Secondary
#> 6510                 Newcastle upon Tyne         391         Special
#> 6511                      North Tyneside         392     All schools
#> 6512                      North Tyneside         392         Primary
#> 6513                      North Tyneside         392       Secondary
#> 6514                      North Tyneside         392         Special
#> 6515                      South Tyneside         393     All schools
#> 6516                      South Tyneside         393         Primary
#> 6517                      South Tyneside         393       Secondary
#> 6518                      South Tyneside         393         Special
#> 6519                          Sunderland         394     All schools
#> 6520                          Sunderland         394         Primary
#> 6521                          Sunderland         394       Secondary
#> 6522                          Sunderland         394         Special
#> 6523                           Gateshead         390     All schools
#> 6524                           Gateshead         390         Primary
#> 6525                           Gateshead         390       Secondary
#> 6526                           Gateshead         390         Special
#> 6527                                <NA>          NA     All schools
#> 6528                                <NA>          NA         Primary
#> 6529                                <NA>          NA       Secondary
#> 6530                                <NA>          NA         Special
#> 6531                              Halton         876     All schools
#> 6532                              Halton         876         Primary
#> 6533                              Halton         876       Secondary
#> 6534                              Halton         876         Special
#> 6535                          Warrington         877     All schools
#> 6536                          Warrington         877         Primary
#> 6537                          Warrington         877       Secondary
#> 6538                          Warrington         877         Special
#> 6539               Blackburn with Darwen         889     All schools
#> 6540               Blackburn with Darwen         889         Primary
#> 6541               Blackburn with Darwen         889       Secondary
#> 6542               Blackburn with Darwen         889         Special
#> 6543                           Blackpool         890     All schools
#> 6544                           Blackpool         890         Primary
#> 6545                           Blackpool         890       Secondary
#> 6546                           Blackpool         890         Special
#> 6547                       Cheshire East         895     All schools
#> 6548                       Cheshire East         895         Primary
#> 6549                       Cheshire East         895       Secondary
#> 6550                       Cheshire East         895         Special
#> 6551           Cheshire West and Chester         896     All schools
#> 6552           Cheshire West and Chester         896         Primary
#> 6553           Cheshire West and Chester         896       Secondary
#> 6554           Cheshire West and Chester         896         Special
#> 6555                          Cumberland         942     All schools
#> 6556                          Cumberland         942         Primary
#> 6557                          Cumberland         942       Secondary
#> 6558                          Cumberland         942         Special
#> 6559             Westmorland and Furness         943     All schools
#> 6560             Westmorland and Furness         943         Primary
#> 6561             Westmorland and Furness         943       Secondary
#> 6562             Westmorland and Furness         943         Special
#> 6563                              Bolton         350     All schools
#> 6564                              Bolton         350         Primary
#> 6565                              Bolton         350       Secondary
#> 6566                              Bolton         350         Special
#> 6567                                Bury         351     All schools
#> 6568                                Bury         351         Primary
#> 6569                                Bury         351       Secondary
#> 6570                                Bury         351         Special
#> 6571                          Manchester         352     All schools
#> 6572                          Manchester         352         Primary
#> 6573                          Manchester         352       Secondary
#> 6574                          Manchester         352         Special
#> 6575                              Oldham         353     All schools
#> 6576                              Oldham         353         Primary
#> 6577                              Oldham         353       Secondary
#> 6578                              Oldham         353         Special
#> 6579                            Rochdale         354     All schools
#> 6580                            Rochdale         354         Primary
#> 6581                            Rochdale         354       Secondary
#> 6582                            Rochdale         354         Special
#> 6583                             Salford         355     All schools
#> 6584                             Salford         355         Primary
#> 6585                             Salford         355       Secondary
#> 6586                             Salford         355         Special
#> 6587                           Stockport         356     All schools
#> 6588                           Stockport         356         Primary
#> 6589                           Stockport         356       Secondary
#> 6590                           Stockport         356         Special
#> 6591                            Tameside         357     All schools
#> 6592                            Tameside         357         Primary
#> 6593                            Tameside         357       Secondary
#> 6594                            Tameside         357         Special
#> 6595                            Trafford         358     All schools
#> 6596                            Trafford         358         Primary
#> 6597                            Trafford         358       Secondary
#> 6598                            Trafford         358         Special
#> 6599                               Wigan         359     All schools
#> 6600                               Wigan         359         Primary
#> 6601                               Wigan         359       Secondary
#> 6602                               Wigan         359         Special
#> 6603                            Knowsley         340     All schools
#> 6604                            Knowsley         340         Primary
#> 6605                            Knowsley         340       Secondary
#> 6606                            Knowsley         340         Special
#> 6607                           Liverpool         341     All schools
#> 6608                           Liverpool         341         Primary
#> 6609                           Liverpool         341       Secondary
#> 6610                           Liverpool         341         Special
#> 6611                          St. Helens         342     All schools
#> 6612                          St. Helens         342         Primary
#> 6613                          St. Helens         342       Secondary
#> 6614                          St. Helens         342         Special
#> 6615                              Sefton         343     All schools
#> 6616                              Sefton         343         Primary
#> 6617                              Sefton         343       Secondary
#> 6618                              Sefton         343         Special
#> 6619                              Wirral         344     All schools
#> 6620                              Wirral         344         Primary
#> 6621                              Wirral         344       Secondary
#> 6622                              Wirral         344         Special
#> 6623                          Lancashire         888     All schools
#> 6624                          Lancashire         888         Primary
#> 6625                          Lancashire         888       Secondary
#> 6626                          Lancashire         888         Special
#> 6627                                <NA>          NA     All schools
#> 6628                                <NA>          NA         Primary
#> 6629                                <NA>          NA       Secondary
#> 6630                                <NA>          NA         Special
#> 6631         Kingston upon Hull, City of         810     All schools
#> 6632         Kingston upon Hull, City of         810         Primary
#> 6633         Kingston upon Hull, City of         810       Secondary
#> 6634         Kingston upon Hull, City of         810         Special
#> 6635            East Riding of Yorkshire         811     All schools
#> 6636            East Riding of Yorkshire         811         Primary
#> 6637            East Riding of Yorkshire         811       Secondary
#> 6638            East Riding of Yorkshire         811         Special
#> 6639             North East Lincolnshire         812     All schools
#> 6640             North East Lincolnshire         812         Primary
#> 6641             North East Lincolnshire         812       Secondary
#> 6642             North East Lincolnshire         812         Special
#> 6643                  North Lincolnshire         813     All schools
#> 6644                  North Lincolnshire         813         Primary
#> 6645                  North Lincolnshire         813       Secondary
#> 6646                  North Lincolnshire         813         Special
#> 6647                                York         816     All schools
#> 6648                                York         816         Primary
#> 6649                                York         816       Secondary
#> 6650                                York         816         Special
#> 6651                     North Yorkshire         815     All schools
#> 6652                     North Yorkshire         815         Primary
#> 6653                     North Yorkshire         815       Secondary
#> 6654                     North Yorkshire         815         Special
#> 6655                            Barnsley         370     All schools
#> 6656                            Barnsley         370         Primary
#> 6657                            Barnsley         370       Secondary
#> 6658                            Barnsley         370         Special
#> 6659                           Doncaster         371     All schools
#> 6660                           Doncaster         371         Primary
#> 6661                           Doncaster         371       Secondary
#> 6662                           Doncaster         371         Special
#> 6663                           Rotherham         372     All schools
#> 6664                           Rotherham         372         Primary
#> 6665                           Rotherham         372       Secondary
#> 6666                           Rotherham         372         Special
#> 6667                           Sheffield         373     All schools
#> 6668                           Sheffield         373         Primary
#> 6669                           Sheffield         373       Secondary
#> 6670                           Sheffield         373         Special
#> 6671                            Bradford         380     All schools
#> 6672                            Bradford         380         Primary
#> 6673                            Bradford         380       Secondary
#> 6674                            Bradford         380         Special
#> 6675                          Calderdale         381     All schools
#> 6676                          Calderdale         381         Primary
#> 6677                          Calderdale         381       Secondary
#> 6678                          Calderdale         381         Special
#> 6679                            Kirklees         382     All schools
#> 6680                            Kirklees         382         Primary
#> 6681                            Kirklees         382       Secondary
#> 6682                            Kirklees         382         Special
#> 6683                               Leeds         383     All schools
#> 6684                               Leeds         383         Primary
#> 6685                               Leeds         383       Secondary
#> 6686                               Leeds         383         Special
#> 6687                           Wakefield         384     All schools
#> 6688                           Wakefield         384         Primary
#> 6689                           Wakefield         384       Secondary
#> 6690                           Wakefield         384         Special
#> 6691                                <NA>          NA     All schools
#> 6692                                <NA>          NA         Primary
#> 6693                                <NA>          NA       Secondary
#> 6694                                <NA>          NA         Special
#> 6695                               Derby         831     All schools
#> 6696                               Derby         831         Primary
#> 6697                               Derby         831       Secondary
#> 6698                               Derby         831         Special
#> 6699                           Leicester         856     All schools
#> 6700                           Leicester         856         Primary
#> 6701                           Leicester         856       Secondary
#> 6702                           Leicester         856         Special
#> 6703                             Rutland         857     All schools
#> 6704                             Rutland         857         Primary
#> 6705                             Rutland         857       Secondary
#> 6706                          Nottingham         892     All schools
#> 6707                          Nottingham         892         Primary
#> 6708                          Nottingham         892       Secondary
#> 6709                          Nottingham         892         Special
#> 6710              North Northamptonshire         940     All schools
#> 6711              North Northamptonshire         940         Primary
#> 6712              North Northamptonshire         940       Secondary
#> 6713              North Northamptonshire         940         Special
#> 6714               West Northamptonshire         941     All schools
#> 6715               West Northamptonshire         941         Primary
#> 6716               West Northamptonshire         941       Secondary
#> 6717               West Northamptonshire         941         Special
#> 6718                          Derbyshire         830     All schools
#> 6719                          Derbyshire         830         Primary
#> 6720                          Derbyshire         830       Secondary
#> 6721                          Derbyshire         830         Special
#> 6722                      Leicestershire         855     All schools
#> 6723                      Leicestershire         855         Primary
#> 6724                      Leicestershire         855       Secondary
#> 6725                      Leicestershire         855         Special
#> 6726                        Lincolnshire         925     All schools
#> 6727                        Lincolnshire         925         Primary
#> 6728                        Lincolnshire         925       Secondary
#> 6729                        Lincolnshire         925         Special
#> 6730                     Nottinghamshire         891     All schools
#> 6731                     Nottinghamshire         891         Primary
#> 6732                     Nottinghamshire         891       Secondary
#> 6733                     Nottinghamshire         891         Special
#> 6734                                <NA>          NA     All schools
#> 6735                                <NA>          NA         Primary
#> 6736                                <NA>          NA       Secondary
#> 6737                                <NA>          NA         Special
#> 6738            Herefordshire, County of         884     All schools
#> 6739            Herefordshire, County of         884         Primary
#> 6740            Herefordshire, County of         884       Secondary
#> 6741            Herefordshire, County of         884         Special
#> 6742                  Telford and Wrekin         894     All schools
#> 6743                  Telford and Wrekin         894         Primary
#> 6744                  Telford and Wrekin         894       Secondary
#> 6745                  Telford and Wrekin         894         Special
#> 6746                      Stoke-on-Trent         861     All schools
#> 6747                      Stoke-on-Trent         861         Primary
#> 6748                      Stoke-on-Trent         861       Secondary
#> 6749                      Stoke-on-Trent         861         Special
#> 6750                          Shropshire         893     All schools
#> 6751                          Shropshire         893         Primary
#> 6752                          Shropshire         893       Secondary
#> 6753                          Shropshire         893         Special
#> 6754                          Birmingham         330     All schools
#> 6755                          Birmingham         330         Primary
#> 6756                          Birmingham         330       Secondary
#> 6757                          Birmingham         330         Special
#> 6758                            Coventry         331     All schools
#> 6759                            Coventry         331         Primary
#> 6760                            Coventry         331       Secondary
#> 6761                            Coventry         331         Special
#> 6762                              Dudley         332     All schools
#> 6763                              Dudley         332         Primary
#> 6764                              Dudley         332       Secondary
#> 6765                              Dudley         332         Special
#> 6766                            Sandwell         333     All schools
#> 6767                            Sandwell         333         Primary
#> 6768                            Sandwell         333       Secondary
#> 6769                            Sandwell         333         Special
#> 6770                            Solihull         334     All schools
#> 6771                            Solihull         334         Primary
#> 6772                            Solihull         334       Secondary
#> 6773                            Solihull         334         Special
#> 6774                             Walsall         335     All schools
#> 6775                             Walsall         335         Primary
#> 6776                             Walsall         335       Secondary
#> 6777                             Walsall         335         Special
#> 6778                       Wolverhampton         336     All schools
#> 6779                       Wolverhampton         336         Primary
#> 6780                       Wolverhampton         336       Secondary
#> 6781                       Wolverhampton         336         Special
#> 6782                       Staffordshire         860     All schools
#> 6783                       Staffordshire         860         Primary
#> 6784                       Staffordshire         860       Secondary
#> 6785                       Staffordshire         860         Special
#> 6786                        Warwickshire         937     All schools
#> 6787                        Warwickshire         937         Primary
#> 6788                        Warwickshire         937       Secondary
#> 6789                        Warwickshire         937         Special
#> 6790                      Worcestershire         885     All schools
#> 6791                      Worcestershire         885         Primary
#> 6792                      Worcestershire         885       Secondary
#> 6793                      Worcestershire         885         Special
#> 6794                                <NA>          NA     All schools
#> 6795                                <NA>          NA         Primary
#> 6796                                <NA>          NA       Secondary
#> 6797                                <NA>          NA         Special
#> 6798                        Peterborough         874     All schools
#> 6799                        Peterborough         874         Primary
#> 6800                        Peterborough         874       Secondary
#> 6801                        Peterborough         874         Special
#> 6802                               Luton         821     All schools
#> 6803                               Luton         821         Primary
#> 6804                               Luton         821       Secondary
#> 6805                               Luton         821         Special
#> 6806                     Southend-on-Sea         882     All schools
#> 6807                     Southend-on-Sea         882         Primary
#> 6808                     Southend-on-Sea         882       Secondary
#> 6809                     Southend-on-Sea         882         Special
#> 6810                            Thurrock         883     All schools
#> 6811                            Thurrock         883         Primary
#> 6812                            Thurrock         883       Secondary
#> 6813                            Thurrock         883         Special
#> 6814                             Bedford         822     All schools
#> 6815                             Bedford         822         Primary
#> 6816                             Bedford         822       Secondary
#> 6817                             Bedford         822         Special
#> 6818                Central Bedfordshire         823     All schools
#> 6819                Central Bedfordshire         823         Primary
#> 6820                Central Bedfordshire         823       Secondary
#> 6821                Central Bedfordshire         823         Special
#> 6822                      Cambridgeshire         873     All schools
#> 6823                      Cambridgeshire         873         Primary
#> 6824                      Cambridgeshire         873       Secondary
#> 6825                      Cambridgeshire         873         Special
#> 6826                               Essex         881     All schools
#> 6827                               Essex         881         Primary
#> 6828                               Essex         881       Secondary
#> 6829                               Essex         881         Special
#> 6830                       Hertfordshire         919     All schools
#> 6831                       Hertfordshire         919         Primary
#> 6832                       Hertfordshire         919       Secondary
#> 6833                       Hertfordshire         919         Special
#> 6834                             Norfolk         926     All schools
#> 6835                             Norfolk         926         Primary
#> 6836                             Norfolk         926       Secondary
#> 6837                             Norfolk         926         Special
#> 6838                             Suffolk         935     All schools
#> 6839                             Suffolk         935         Primary
#> 6840                             Suffolk         935       Secondary
#> 6841                             Suffolk         935         Special
#> 6842                                <NA>          NA     All schools
#> 6843                                <NA>          NA         Primary
#> 6844                                <NA>          NA       Secondary
#> 6845                                <NA>          NA         Special
#> 6846                      City of London         201     All schools
#> 6847                      City of London         201         Primary
#> 6848                Barking and Dagenham         301     All schools
#> 6849                Barking and Dagenham         301         Primary
#> 6850                Barking and Dagenham         301       Secondary
#> 6851                Barking and Dagenham         301         Special
#> 6852                              Barnet         302     All schools
#> 6853                              Barnet         302         Primary
#> 6854                              Barnet         302       Secondary
#> 6855                              Barnet         302         Special
#> 6856                              Bexley         303     All schools
#> 6857                              Bexley         303         Primary
#> 6858                              Bexley         303       Secondary
#> 6859                              Bexley         303         Special
#> 6860                               Brent         304     All schools
#> 6861                               Brent         304         Primary
#> 6862                               Brent         304       Secondary
#> 6863                               Brent         304         Special
#> 6864                             Bromley         305     All schools
#> 6865                             Bromley         305         Primary
#> 6866                             Bromley         305       Secondary
#> 6867                             Bromley         305         Special
#> 6868                              Camden         202     All schools
#> 6869                              Camden         202         Primary
#> 6870                              Camden         202       Secondary
#> 6871                              Camden         202         Special
#> 6872                             Croydon         306     All schools
#> 6873                             Croydon         306         Primary
#> 6874                             Croydon         306       Secondary
#> 6875                             Croydon         306         Special
#> 6876                              Ealing         307     All schools
#> 6877                              Ealing         307         Primary
#> 6878                              Ealing         307       Secondary
#> 6879                              Ealing         307         Special
#> 6880                             Enfield         308     All schools
#> 6881                             Enfield         308         Primary
#> 6882                             Enfield         308       Secondary
#> 6883                             Enfield         308         Special
#> 6884                           Greenwich         203     All schools
#> 6885                           Greenwich         203         Primary
#> 6886                           Greenwich         203       Secondary
#> 6887                           Greenwich         203         Special
#> 6888                             Hackney         204     All schools
#> 6889                             Hackney         204         Primary
#> 6890                             Hackney         204       Secondary
#> 6891                             Hackney         204         Special
#> 6892              Hammersmith and Fulham         205     All schools
#> 6893              Hammersmith and Fulham         205         Primary
#> 6894              Hammersmith and Fulham         205       Secondary
#> 6895              Hammersmith and Fulham         205         Special
#> 6896                            Haringey         309     All schools
#> 6897                            Haringey         309         Primary
#> 6898                            Haringey         309       Secondary
#> 6899                            Haringey         309         Special
#> 6900                              Harrow         310     All schools
#> 6901                              Harrow         310         Primary
#> 6902                              Harrow         310       Secondary
#> 6903                              Harrow         310         Special
#> 6904                            Havering         311     All schools
#> 6905                            Havering         311         Primary
#> 6906                            Havering         311       Secondary
#> 6907                            Havering         311         Special
#> 6908                          Hillingdon         312     All schools
#> 6909                          Hillingdon         312         Primary
#> 6910                          Hillingdon         312       Secondary
#> 6911                          Hillingdon         312         Special
#> 6912                            Hounslow         313     All schools
#> 6913                            Hounslow         313         Primary
#> 6914                            Hounslow         313       Secondary
#> 6915                            Hounslow         313         Special
#> 6916                           Islington         206     All schools
#> 6917                           Islington         206         Primary
#> 6918                           Islington         206       Secondary
#> 6919                           Islington         206         Special
#> 6920              Kensington and Chelsea         207     All schools
#> 6921              Kensington and Chelsea         207         Primary
#> 6922              Kensington and Chelsea         207       Secondary
#> 6923              Kensington and Chelsea         207         Special
#> 6924                Kingston upon Thames         314     All schools
#> 6925                Kingston upon Thames         314         Primary
#> 6926                Kingston upon Thames         314       Secondary
#> 6927                Kingston upon Thames         314         Special
#> 6928                             Lambeth         208     All schools
#> 6929                             Lambeth         208         Primary
#> 6930                             Lambeth         208       Secondary
#> 6931                             Lambeth         208         Special
#> 6932                            Lewisham         209     All schools
#> 6933                            Lewisham         209         Primary
#> 6934                            Lewisham         209       Secondary
#> 6935                            Lewisham         209         Special
#> 6936                              Merton         315     All schools
#> 6937                              Merton         315         Primary
#> 6938                              Merton         315       Secondary
#> 6939                              Merton         315         Special
#> 6940                              Newham         316     All schools
#> 6941                              Newham         316         Primary
#> 6942                              Newham         316       Secondary
#> 6943                              Newham         316         Special
#> 6944                           Redbridge         317     All schools
#> 6945                           Redbridge         317         Primary
#> 6946                           Redbridge         317       Secondary
#> 6947                           Redbridge         317         Special
#> 6948                Richmond upon Thames         318     All schools
#> 6949                Richmond upon Thames         318         Primary
#> 6950                Richmond upon Thames         318       Secondary
#> 6951                Richmond upon Thames         318         Special
#> 6952                           Southwark         210     All schools
#> 6953                           Southwark         210         Primary
#> 6954                           Southwark         210       Secondary
#> 6955                           Southwark         210         Special
#> 6956                              Sutton         319     All schools
#> 6957                              Sutton         319         Primary
#> 6958                              Sutton         319       Secondary
#> 6959                              Sutton         319         Special
#> 6960                       Tower Hamlets         211     All schools
#> 6961                       Tower Hamlets         211         Primary
#> 6962                       Tower Hamlets         211       Secondary
#> 6963                       Tower Hamlets         211         Special
#> 6964                      Waltham Forest         320     All schools
#> 6965                      Waltham Forest         320         Primary
#> 6966                      Waltham Forest         320       Secondary
#> 6967                      Waltham Forest         320         Special
#> 6968                          Wandsworth         212     All schools
#> 6969                          Wandsworth         212         Primary
#> 6970                          Wandsworth         212       Secondary
#> 6971                          Wandsworth         212         Special
#> 6972                         Westminster         213     All schools
#> 6973                         Westminster         213         Primary
#> 6974                         Westminster         213       Secondary
#> 6975                         Westminster         213         Special
#> 6976                                <NA>          NA     All schools
#> 6977                                <NA>          NA         Primary
#> 6978                                <NA>          NA       Secondary
#> 6979                                <NA>          NA         Special
#> 6980                              Medway         887     All schools
#> 6981                              Medway         887         Primary
#> 6982                              Medway         887       Secondary
#> 6983                              Medway         887         Special
#> 6984                    Bracknell Forest         867     All schools
#> 6985                    Bracknell Forest         867         Primary
#> 6986                    Bracknell Forest         867       Secondary
#> 6987                    Bracknell Forest         867         Special
#> 6988                      West Berkshire         869     All schools
#> 6989                      West Berkshire         869         Primary
#> 6990                      West Berkshire         869       Secondary
#> 6991                      West Berkshire         869         Special
#> 6992                             Reading         870     All schools
#> 6993                             Reading         870         Primary
#> 6994                             Reading         870       Secondary
#> 6995                             Reading         870         Special
#> 6996                              Slough         871     All schools
#> 6997                              Slough         871         Primary
#> 6998                              Slough         871       Secondary
#> 6999                              Slough         871         Special
#> 7000              Windsor and Maidenhead         868     All schools
#> 7001              Windsor and Maidenhead         868         Primary
#> 7002              Windsor and Maidenhead         868       Secondary
#> 7003              Windsor and Maidenhead         868         Special
#> 7004                           Wokingham         872     All schools
#> 7005                           Wokingham         872         Primary
#> 7006                           Wokingham         872       Secondary
#> 7007                           Wokingham         872         Special
#> 7008                       Milton Keynes         826     All schools
#> 7009                       Milton Keynes         826         Primary
#> 7010                       Milton Keynes         826       Secondary
#> 7011                       Milton Keynes         826         Special
#> 7012                   Brighton and Hove         846     All schools
#> 7013                   Brighton and Hove         846         Primary
#> 7014                   Brighton and Hove         846       Secondary
#> 7015                   Brighton and Hove         846         Special
#> 7016                          Portsmouth         851     All schools
#> 7017                          Portsmouth         851         Primary
#> 7018                          Portsmouth         851       Secondary
#> 7019                          Portsmouth         851         Special
#> 7020                         Southampton         852     All schools
#> 7021                         Southampton         852         Primary
#> 7022                         Southampton         852       Secondary
#> 7023                         Southampton         852         Special
#> 7024                       Isle of Wight         921     All schools
#> 7025                       Isle of Wight         921         Primary
#> 7026                       Isle of Wight         921       Secondary
#> 7027                       Isle of Wight         921         Special
#> 7028                     Buckinghamshire         825     All schools
#> 7029                     Buckinghamshire         825         Primary
#> 7030                     Buckinghamshire         825       Secondary
#> 7031                     Buckinghamshire         825         Special
#> 7032                         East Sussex         845     All schools
#> 7033                         East Sussex         845         Primary
#> 7034                         East Sussex         845       Secondary
#> 7035                         East Sussex         845         Special
#> 7036                           Hampshire         850     All schools
#> 7037                           Hampshire         850         Primary
#> 7038                           Hampshire         850       Secondary
#> 7039                           Hampshire         850         Special
#> 7040                                Kent         886     All schools
#> 7041                                Kent         886         Primary
#> 7042                                Kent         886       Secondary
#> 7043                                Kent         886         Special
#> 7044                         Oxfordshire         931     All schools
#> 7045                         Oxfordshire         931         Primary
#> 7046                         Oxfordshire         931       Secondary
#> 7047                         Oxfordshire         931         Special
#> 7048                              Surrey         936     All schools
#> 7049                              Surrey         936         Primary
#> 7050                              Surrey         936       Secondary
#> 7051                              Surrey         936         Special
#> 7052                         West Sussex         938     All schools
#> 7053                         West Sussex         938         Primary
#> 7054                         West Sussex         938       Secondary
#> 7055                         West Sussex         938         Special
#> 7056                                <NA>          NA     All schools
#> 7057                                <NA>          NA         Primary
#> 7058                                <NA>          NA       Secondary
#> 7059                                <NA>          NA         Special
#> 7060        Bath and North East Somerset         800     All schools
#> 7061        Bath and North East Somerset         800         Primary
#> 7062        Bath and North East Somerset         800       Secondary
#> 7063        Bath and North East Somerset         800         Special
#> 7064                    Bristol, City of         801     All schools
#> 7065                    Bristol, City of         801         Primary
#> 7066                    Bristol, City of         801       Secondary
#> 7067                    Bristol, City of         801         Special
#> 7068                      North Somerset         802     All schools
#> 7069                      North Somerset         802         Primary
#> 7070                      North Somerset         802       Secondary
#> 7071                      North Somerset         802         Special
#> 7072               South Gloucestershire         803     All schools
#> 7073               South Gloucestershire         803         Primary
#> 7074               South Gloucestershire         803       Secondary
#> 7075               South Gloucestershire         803         Special
#> 7076                            Plymouth         879     All schools
#> 7077                            Plymouth         879         Primary
#> 7078                            Plymouth         879       Secondary
#> 7079                            Plymouth         879         Special
#> 7080                              Torbay         880     All schools
#> 7081                              Torbay         880         Primary
#> 7082                              Torbay         880       Secondary
#> 7083                              Torbay         880         Special
#> 7084                             Swindon         866     All schools
#> 7085                             Swindon         866         Primary
#> 7086                             Swindon         866       Secondary
#> 7087                             Swindon         866         Special
#> 7088                            Cornwall         908     All schools
#> 7089                            Cornwall         908         Primary
#> 7090                            Cornwall         908       Secondary
#> 7091                            Cornwall         908         Special
#> 7092                     Isles of Scilly         420     All schools
#> 7093                     Isles of Scilly         420       Secondary
#> 7094                           Wiltshire         865     All schools
#> 7095                           Wiltshire         865         Primary
#> 7096                           Wiltshire         865       Secondary
#> 7097                           Wiltshire         865         Special
#> 7098 Bournemouth, Christchurch and Poole         839     All schools
#> 7099 Bournemouth, Christchurch and Poole         839         Primary
#> 7100 Bournemouth, Christchurch and Poole         839       Secondary
#> 7101 Bournemouth, Christchurch and Poole         839         Special
#> 7102                              Dorset         838     All schools
#> 7103                              Dorset         838         Primary
#> 7104                              Dorset         838       Secondary
#> 7105                              Dorset         838         Special
#> 7106                            Somerset         933     All schools
#> 7107                            Somerset         933         Primary
#> 7108                            Somerset         933       Secondary
#> 7109                            Somerset         933         Special
#> 7110                               Devon         878     All schools
#> 7111                               Devon         878         Primary
#> 7112                               Devon         878       Secondary
#> 7113                               Devon         878         Special
#> 7114                     Gloucestershire         916     All schools
#> 7115                     Gloucestershire         916         Primary
#> 7116                     Gloucestershire         916       Secondary
#> 7117                     Gloucestershire         916         Special
#> 7118                                <NA>          NA     All schools
#> 7119                                <NA>          NA         Primary
#> 7120                                <NA>          NA       Secondary
#> 7121                                <NA>          NA         Special
#> 7122                                <NA>          NA     All schools
#> 7123                                <NA>          NA         Primary
#> 7124                                <NA>          NA       Secondary
#> 7125                                <NA>          NA         Special
#> 7126                          Hartlepool         805         Primary
#> 7127                          Hartlepool         805       Secondary
#> 7128                          Hartlepool         805         Special
#> 7129                       Middlesbrough         806         Primary
#> 7130                       Middlesbrough         806       Secondary
#> 7131                       Middlesbrough         806         Special
#> 7132                Redcar and Cleveland         807         Primary
#> 7133                Redcar and Cleveland         807       Secondary
#> 7134                Redcar and Cleveland         807         Special
#> 7135                    Stockton-on-Tees         808         Primary
#> 7136                    Stockton-on-Tees         808       Secondary
#> 7137                    Stockton-on-Tees         808         Special
#> 7138                          Darlington         841         Primary
#> 7139                          Darlington         841       Secondary
#> 7140                          Darlington         841         Special
#> 7141                       County Durham         840         Primary
#> 7142                       County Durham         840       Secondary
#> 7143                       County Durham         840         Special
#> 7144                      Northumberland         929         Primary
#> 7145                      Northumberland         929       Secondary
#> 7146                      Northumberland         929         Special
#> 7147                 Newcastle upon Tyne         391         Primary
#> 7148                 Newcastle upon Tyne         391       Secondary
#> 7149                 Newcastle upon Tyne         391         Special
#> 7150                      North Tyneside         392         Primary
#> 7151                      North Tyneside         392       Secondary
#> 7152                      North Tyneside         392         Special
#> 7153                      South Tyneside         393         Primary
#> 7154                      South Tyneside         393       Secondary
#> 7155                      South Tyneside         393         Special
#> 7156                          Sunderland         394         Primary
#> 7157                          Sunderland         394       Secondary
#> 7158                          Sunderland         394         Special
#> 7159                           Gateshead         390         Primary
#> 7160                           Gateshead         390       Secondary
#> 7161                           Gateshead         390         Special
#> 7162                                <NA>          NA     All schools
#> 7163                                <NA>          NA         Primary
#> 7164                                <NA>          NA       Secondary
#> 7165                                <NA>          NA         Special
#> 7166                              Halton         876         Primary
#> 7167                              Halton         876       Secondary
#> 7168                              Halton         876         Special
#> 7169                          Warrington         877         Primary
#> 7170                          Warrington         877       Secondary
#> 7171                          Warrington         877         Special
#> 7172               Blackburn with Darwen         889         Primary
#> 7173               Blackburn with Darwen         889       Secondary
#> 7174               Blackburn with Darwen         889         Special
#> 7175                           Blackpool         890         Primary
#> 7176                           Blackpool         890       Secondary
#> 7177                           Blackpool         890         Special
#> 7178                       Cheshire East         895         Primary
#> 7179                       Cheshire East         895       Secondary
#> 7180                       Cheshire East         895         Special
#> 7181           Cheshire West and Chester         896         Primary
#> 7182           Cheshire West and Chester         896       Secondary
#> 7183           Cheshire West and Chester         896         Special
#> 7184                          Cumberland         942         Primary
#> 7185                          Cumberland         942       Secondary
#> 7186                          Cumberland         942         Special
#> 7187             Westmorland and Furness         943         Primary
#> 7188             Westmorland and Furness         943       Secondary
#> 7189             Westmorland and Furness         943         Special
#> 7190                              Bolton         350         Primary
#> 7191                              Bolton         350       Secondary
#> 7192                              Bolton         350         Special
#> 7193                                Bury         351         Primary
#> 7194                                Bury         351       Secondary
#> 7195                                Bury         351         Special
#> 7196                          Manchester         352         Primary
#> 7197                          Manchester         352       Secondary
#> 7198                          Manchester         352         Special
#> 7199                              Oldham         353         Primary
#> 7200                              Oldham         353       Secondary
#> 7201                              Oldham         353         Special
#> 7202                            Rochdale         354         Primary
#> 7203                            Rochdale         354       Secondary
#> 7204                            Rochdale         354         Special
#> 7205                             Salford         355         Primary
#> 7206                             Salford         355       Secondary
#> 7207                             Salford         355         Special
#> 7208                           Stockport         356         Primary
#> 7209                           Stockport         356       Secondary
#> 7210                           Stockport         356         Special
#> 7211                            Tameside         357         Primary
#> 7212                            Tameside         357       Secondary
#> 7213                            Tameside         357         Special
#> 7214                            Trafford         358         Primary
#> 7215                            Trafford         358       Secondary
#> 7216                            Trafford         358         Special
#> 7217                               Wigan         359         Primary
#> 7218                               Wigan         359       Secondary
#> 7219                               Wigan         359         Special
#> 7220                            Knowsley         340         Primary
#> 7221                            Knowsley         340       Secondary
#> 7222                            Knowsley         340         Special
#> 7223                           Liverpool         341         Primary
#> 7224                           Liverpool         341       Secondary
#> 7225                           Liverpool         341         Special
#> 7226                          St. Helens         342         Primary
#> 7227                          St. Helens         342       Secondary
#> 7228                          St. Helens         342         Special
#> 7229                              Sefton         343         Primary
#> 7230                              Sefton         343       Secondary
#> 7231                              Sefton         343         Special
#> 7232                              Wirral         344         Primary
#> 7233                              Wirral         344       Secondary
#> 7234                              Wirral         344         Special
#> 7235                          Lancashire         888         Primary
#> 7236                          Lancashire         888       Secondary
#> 7237                          Lancashire         888         Special
#> 7238                                <NA>          NA     All schools
#> 7239                                <NA>          NA         Primary
#> 7240                                <NA>          NA       Secondary
#> 7241                                <NA>          NA         Special
#> 7242         Kingston upon Hull, City of         810         Primary
#> 7243         Kingston upon Hull, City of         810       Secondary
#> 7244         Kingston upon Hull, City of         810         Special
#> 7245            East Riding of Yorkshire         811         Primary
#> 7246            East Riding of Yorkshire         811       Secondary
#> 7247            East Riding of Yorkshire         811         Special
#> 7248             North East Lincolnshire         812         Primary
#> 7249             North East Lincolnshire         812       Secondary
#> 7250             North East Lincolnshire         812         Special
#> 7251                  North Lincolnshire         813         Primary
#> 7252                  North Lincolnshire         813       Secondary
#> 7253                  North Lincolnshire         813         Special
#> 7254                                York         816         Primary
#> 7255                                York         816       Secondary
#> 7256                                York         816         Special
#> 7257                     North Yorkshire         815         Primary
#> 7258                     North Yorkshire         815       Secondary
#> 7259                     North Yorkshire         815         Special
#> 7260                            Barnsley         370         Primary
#> 7261                            Barnsley         370       Secondary
#> 7262                            Barnsley         370         Special
#> 7263                           Doncaster         371         Primary
#> 7264                           Doncaster         371       Secondary
#> 7265                           Doncaster         371         Special
#> 7266                           Rotherham         372         Primary
#> 7267                           Rotherham         372       Secondary
#> 7268                           Rotherham         372         Special
#> 7269                           Sheffield         373         Primary
#> 7270                           Sheffield         373       Secondary
#> 7271                           Sheffield         373         Special
#> 7272                            Bradford         380         Primary
#> 7273                            Bradford         380       Secondary
#> 7274                            Bradford         380         Special
#> 7275                          Calderdale         381         Primary
#> 7276                          Calderdale         381       Secondary
#> 7277                          Calderdale         381         Special
#> 7278                            Kirklees         382         Primary
#> 7279                            Kirklees         382       Secondary
#> 7280                            Kirklees         382         Special
#> 7281                               Leeds         383         Primary
#> 7282                               Leeds         383       Secondary
#> 7283                               Leeds         383         Special
#> 7284                           Wakefield         384         Primary
#> 7285                           Wakefield         384       Secondary
#> 7286                           Wakefield         384         Special
#> 7287                                <NA>          NA     All schools
#> 7288                                <NA>          NA         Primary
#> 7289                                <NA>          NA       Secondary
#> 7290                                <NA>          NA         Special
#> 7291                               Derby         831         Primary
#> 7292                               Derby         831       Secondary
#> 7293                               Derby         831         Special
#> 7294                           Leicester         856         Primary
#> 7295                           Leicester         856       Secondary
#> 7296                           Leicester         856         Special
#> 7297                             Rutland         857         Primary
#> 7298                             Rutland         857       Secondary
#> 7299                          Nottingham         892         Primary
#> 7300                          Nottingham         892       Secondary
#> 7301                          Nottingham         892         Special
#> 7302              North Northamptonshire         940         Primary
#> 7303              North Northamptonshire         940       Secondary
#> 7304              North Northamptonshire         940         Special
#> 7305               West Northamptonshire         941         Primary
#> 7306               West Northamptonshire         941       Secondary
#> 7307               West Northamptonshire         941         Special
#> 7308                          Derbyshire         830         Primary
#> 7309                          Derbyshire         830       Secondary
#> 7310                          Derbyshire         830         Special
#> 7311                      Leicestershire         855         Primary
#> 7312                      Leicestershire         855       Secondary
#> 7313                      Leicestershire         855         Special
#> 7314                        Lincolnshire         925         Primary
#> 7315                        Lincolnshire         925       Secondary
#> 7316                        Lincolnshire         925         Special
#> 7317                     Nottinghamshire         891         Primary
#> 7318                     Nottinghamshire         891       Secondary
#> 7319                     Nottinghamshire         891         Special
#> 7320                                <NA>          NA     All schools
#> 7321                                <NA>          NA         Primary
#> 7322                                <NA>          NA       Secondary
#> 7323                                <NA>          NA         Special
#> 7324            Herefordshire, County of         884         Primary
#> 7325            Herefordshire, County of         884       Secondary
#> 7326            Herefordshire, County of         884         Special
#> 7327                  Telford and Wrekin         894         Primary
#> 7328                  Telford and Wrekin         894       Secondary
#> 7329                  Telford and Wrekin         894         Special
#> 7330                      Stoke-on-Trent         861         Primary
#> 7331                      Stoke-on-Trent         861       Secondary
#> 7332                      Stoke-on-Trent         861         Special
#> 7333                          Shropshire         893         Primary
#> 7334                          Shropshire         893       Secondary
#> 7335                          Shropshire         893         Special
#> 7336                          Birmingham         330         Primary
#> 7337                          Birmingham         330       Secondary
#> 7338                          Birmingham         330         Special
#> 7339                            Coventry         331         Primary
#> 7340                            Coventry         331       Secondary
#> 7341                            Coventry         331         Special
#> 7342                              Dudley         332         Primary
#> 7343                              Dudley         332       Secondary
#> 7344                              Dudley         332         Special
#> 7345                            Sandwell         333         Primary
#> 7346                            Sandwell         333       Secondary
#> 7347                            Sandwell         333         Special
#> 7348                            Solihull         334         Primary
#> 7349                            Solihull         334       Secondary
#> 7350                            Solihull         334         Special
#> 7351                             Walsall         335         Primary
#> 7352                             Walsall         335       Secondary
#> 7353                             Walsall         335         Special
#> 7354                       Wolverhampton         336         Primary
#> 7355                       Wolverhampton         336       Secondary
#> 7356                       Wolverhampton         336         Special
#> 7357                       Staffordshire         860         Primary
#> 7358                       Staffordshire         860       Secondary
#> 7359                       Staffordshire         860         Special
#> 7360                        Warwickshire         937         Primary
#> 7361                        Warwickshire         937       Secondary
#> 7362                        Warwickshire         937         Special
#> 7363                      Worcestershire         885         Primary
#> 7364                      Worcestershire         885       Secondary
#> 7365                      Worcestershire         885         Special
#> 7366                                <NA>          NA     All schools
#> 7367                                <NA>          NA         Primary
#> 7368                                <NA>          NA       Secondary
#> 7369                                <NA>          NA         Special
#> 7370                        Peterborough         874         Primary
#> 7371                        Peterborough         874       Secondary
#> 7372                        Peterborough         874         Special
#> 7373                               Luton         821         Primary
#> 7374                               Luton         821       Secondary
#> 7375                               Luton         821         Special
#> 7376                     Southend-on-Sea         882         Primary
#> 7377                     Southend-on-Sea         882       Secondary
#> 7378                     Southend-on-Sea         882         Special
#> 7379                            Thurrock         883         Primary
#> 7380                            Thurrock         883       Secondary
#> 7381                            Thurrock         883         Special
#> 7382                             Bedford         822         Primary
#> 7383                             Bedford         822       Secondary
#> 7384                             Bedford         822         Special
#> 7385                Central Bedfordshire         823         Primary
#> 7386                Central Bedfordshire         823       Secondary
#> 7387                Central Bedfordshire         823         Special
#> 7388                      Cambridgeshire         873         Primary
#> 7389                      Cambridgeshire         873       Secondary
#> 7390                      Cambridgeshire         873         Special
#> 7391                               Essex         881         Primary
#> 7392                               Essex         881       Secondary
#> 7393                               Essex         881         Special
#> 7394                       Hertfordshire         919         Primary
#> 7395                       Hertfordshire         919       Secondary
#> 7396                       Hertfordshire         919         Special
#> 7397                             Norfolk         926         Primary
#> 7398                             Norfolk         926       Secondary
#> 7399                             Norfolk         926         Special
#> 7400                             Suffolk         935         Primary
#> 7401                             Suffolk         935       Secondary
#> 7402                             Suffolk         935         Special
#> 7403                                <NA>          NA     All schools
#> 7404                                <NA>          NA         Primary
#> 7405                                <NA>          NA       Secondary
#> 7406                                <NA>          NA         Special
#> 7407                      City of London         201         Primary
#> 7408                Barking and Dagenham         301         Primary
#> 7409                Barking and Dagenham         301       Secondary
#> 7410                Barking and Dagenham         301         Special
#> 7411                              Barnet         302         Primary
#> 7412                              Barnet         302       Secondary
#> 7413                              Barnet         302         Special
#> 7414                              Bexley         303         Primary
#> 7415                              Bexley         303       Secondary
#> 7416                              Bexley         303         Special
#> 7417                               Brent         304         Primary
#> 7418                               Brent         304       Secondary
#> 7419                               Brent         304         Special
#> 7420                             Bromley         305         Primary
#> 7421                             Bromley         305       Secondary
#> 7422                             Bromley         305         Special
#> 7423                              Camden         202         Primary
#> 7424                              Camden         202       Secondary
#> 7425                              Camden         202         Special
#> 7426                             Croydon         306         Primary
#> 7427                             Croydon         306       Secondary
#> 7428                             Croydon         306         Special
#> 7429                              Ealing         307         Primary
#> 7430                              Ealing         307       Secondary
#> 7431                              Ealing         307         Special
#> 7432                             Enfield         308         Primary
#> 7433                             Enfield         308       Secondary
#> 7434                             Enfield         308         Special
#> 7435                           Greenwich         203         Primary
#> 7436                           Greenwich         203       Secondary
#> 7437                           Greenwich         203         Special
#> 7438                             Hackney         204         Primary
#> 7439                             Hackney         204       Secondary
#> 7440                             Hackney         204         Special
#> 7441              Hammersmith and Fulham         205         Primary
#> 7442              Hammersmith and Fulham         205       Secondary
#> 7443              Hammersmith and Fulham         205         Special
#> 7444                            Haringey         309         Primary
#> 7445                            Haringey         309       Secondary
#> 7446                            Haringey         309         Special
#> 7447                              Harrow         310         Primary
#> 7448                              Harrow         310       Secondary
#> 7449                              Harrow         310         Special
#> 7450                            Havering         311         Primary
#> 7451                            Havering         311       Secondary
#> 7452                            Havering         311         Special
#> 7453                          Hillingdon         312         Primary
#> 7454                          Hillingdon         312       Secondary
#> 7455                          Hillingdon         312         Special
#> 7456                            Hounslow         313         Primary
#> 7457                            Hounslow         313       Secondary
#> 7458                            Hounslow         313         Special
#> 7459                           Islington         206         Primary
#> 7460                           Islington         206       Secondary
#> 7461                           Islington         206         Special
#> 7462              Kensington and Chelsea         207         Primary
#> 7463              Kensington and Chelsea         207       Secondary
#> 7464              Kensington and Chelsea         207         Special
#> 7465                Kingston upon Thames         314         Primary
#> 7466                Kingston upon Thames         314       Secondary
#> 7467                Kingston upon Thames         314         Special
#> 7468                             Lambeth         208         Primary
#> 7469                             Lambeth         208       Secondary
#> 7470                             Lambeth         208         Special
#> 7471                            Lewisham         209         Primary
#> 7472                            Lewisham         209       Secondary
#> 7473                            Lewisham         209         Special
#> 7474                              Merton         315         Primary
#> 7475                              Merton         315       Secondary
#> 7476                              Merton         315         Special
#> 7477                              Newham         316         Primary
#> 7478                              Newham         316       Secondary
#> 7479                              Newham         316         Special
#> 7480                           Redbridge         317         Primary
#> 7481                           Redbridge         317       Secondary
#> 7482                           Redbridge         317         Special
#> 7483                Richmond upon Thames         318         Primary
#> 7484                Richmond upon Thames         318       Secondary
#> 7485                Richmond upon Thames         318         Special
#> 7486                           Southwark         210         Primary
#> 7487                           Southwark         210       Secondary
#> 7488                           Southwark         210         Special
#> 7489                              Sutton         319         Primary
#> 7490                              Sutton         319       Secondary
#> 7491                              Sutton         319         Special
#> 7492                       Tower Hamlets         211         Primary
#> 7493                       Tower Hamlets         211       Secondary
#> 7494                       Tower Hamlets         211         Special
#> 7495                      Waltham Forest         320         Primary
#> 7496                      Waltham Forest         320       Secondary
#> 7497                      Waltham Forest         320         Special
#> 7498                          Wandsworth         212         Primary
#> 7499                          Wandsworth         212       Secondary
#> 7500                          Wandsworth         212         Special
#> 7501                         Westminster         213         Primary
#> 7502                         Westminster         213       Secondary
#> 7503                         Westminster         213         Special
#> 7504                                <NA>          NA     All schools
#> 7505                                <NA>          NA         Primary
#> 7506                                <NA>          NA       Secondary
#> 7507                                <NA>          NA         Special
#> 7508                              Medway         887         Primary
#> 7509                              Medway         887       Secondary
#> 7510                              Medway         887         Special
#> 7511                    Bracknell Forest         867         Primary
#> 7512                    Bracknell Forest         867       Secondary
#> 7513                    Bracknell Forest         867         Special
#> 7514                      West Berkshire         869         Primary
#> 7515                      West Berkshire         869       Secondary
#> 7516                      West Berkshire         869         Special
#> 7517                             Reading         870         Primary
#> 7518                             Reading         870       Secondary
#> 7519                             Reading         870         Special
#> 7520                              Slough         871         Primary
#> 7521                              Slough         871       Secondary
#> 7522                              Slough         871         Special
#> 7523              Windsor and Maidenhead         868         Primary
#> 7524              Windsor and Maidenhead         868       Secondary
#> 7525              Windsor and Maidenhead         868         Special
#> 7526                           Wokingham         872         Primary
#> 7527                           Wokingham         872       Secondary
#> 7528                           Wokingham         872         Special
#> 7529                       Milton Keynes         826         Primary
#> 7530                       Milton Keynes         826       Secondary
#> 7531                       Milton Keynes         826         Special
#> 7532                   Brighton and Hove         846         Primary
#> 7533                   Brighton and Hove         846       Secondary
#> 7534                   Brighton and Hove         846         Special
#> 7535                          Portsmouth         851         Primary
#> 7536                          Portsmouth         851       Secondary
#> 7537                          Portsmouth         851         Special
#> 7538                         Southampton         852         Primary
#> 7539                         Southampton         852       Secondary
#> 7540                         Southampton         852         Special
#> 7541                       Isle of Wight         921         Primary
#> 7542                       Isle of Wight         921       Secondary
#> 7543                       Isle of Wight         921         Special
#> 7544                     Buckinghamshire         825         Primary
#> 7545                     Buckinghamshire         825       Secondary
#> 7546                     Buckinghamshire         825         Special
#> 7547                         East Sussex         845         Primary
#> 7548                         East Sussex         845       Secondary
#> 7549                         East Sussex         845         Special
#> 7550                           Hampshire         850         Primary
#> 7551                           Hampshire         850       Secondary
#> 7552                           Hampshire         850         Special
#> 7553                                Kent         886         Primary
#> 7554                                Kent         886       Secondary
#> 7555                                Kent         886         Special
#> 7556                         Oxfordshire         931         Primary
#> 7557                         Oxfordshire         931       Secondary
#> 7558                         Oxfordshire         931         Special
#> 7559                              Surrey         936         Primary
#> 7560                              Surrey         936       Secondary
#> 7561                              Surrey         936         Special
#> 7562                         West Sussex         938         Primary
#> 7563                         West Sussex         938       Secondary
#> 7564                         West Sussex         938         Special
#> 7565                                <NA>          NA     All schools
#> 7566                                <NA>          NA         Primary
#> 7567                                <NA>          NA       Secondary
#> 7568                                <NA>          NA         Special
#> 7569        Bath and North East Somerset         800         Primary
#> 7570        Bath and North East Somerset         800       Secondary
#> 7571        Bath and North East Somerset         800         Special
#> 7572                    Bristol, City of         801         Primary
#> 7573                    Bristol, City of         801       Secondary
#> 7574                    Bristol, City of         801         Special
#> 7575                      North Somerset         802         Primary
#> 7576                      North Somerset         802       Secondary
#> 7577                      North Somerset         802         Special
#> 7578               South Gloucestershire         803         Primary
#> 7579               South Gloucestershire         803       Secondary
#> 7580               South Gloucestershire         803         Special
#> 7581                            Plymouth         879         Primary
#> 7582                            Plymouth         879       Secondary
#> 7583                            Plymouth         879         Special
#> 7584                              Torbay         880         Primary
#> 7585                              Torbay         880       Secondary
#> 7586                              Torbay         880         Special
#> 7587                             Swindon         866         Primary
#> 7588                             Swindon         866       Secondary
#> 7589                             Swindon         866         Special
#> 7590                            Cornwall         908         Primary
#> 7591                            Cornwall         908       Secondary
#> 7592                            Cornwall         908         Special
#> 7593                     Isles of Scilly         420       Secondary
#> 7594                           Wiltshire         865         Primary
#> 7595                           Wiltshire         865       Secondary
#> 7596                           Wiltshire         865         Special
#> 7597 Bournemouth, Christchurch and Poole         839         Primary
#> 7598 Bournemouth, Christchurch and Poole         839       Secondary
#> 7599 Bournemouth, Christchurch and Poole         839         Special
#> 7600                              Dorset         838         Primary
#> 7601                              Dorset         838       Secondary
#> 7602                              Dorset         838         Special
#> 7603                            Somerset         933         Primary
#> 7604                            Somerset         933       Secondary
#> 7605                            Somerset         933         Special
#> 7606                               Devon         878         Primary
#> 7607                               Devon         878       Secondary
#> 7608                               Devon         878         Special
#> 7609                     Gloucestershire         916         Primary
#> 7610                     Gloucestershire         916       Secondary
#> 7611                     Gloucestershire         916         Special
#> 7612                                <NA>          NA     All schools
#> 7613                                <NA>          NA         Primary
#> 7614                                <NA>          NA       Secondary
#> 7615                                <NA>          NA         Special
#> 7616                                <NA>          NA     All schools
#> 7617                                <NA>          NA         Primary
#> 7618                                <NA>          NA       Secondary
#> 7619                                <NA>          NA         Special
#> 7620                          Hartlepool         805         Primary
#> 7621                          Hartlepool         805       Secondary
#> 7622                          Hartlepool         805         Special
#> 7623                       Middlesbrough         806         Primary
#> 7624                       Middlesbrough         806       Secondary
#> 7625                       Middlesbrough         806         Special
#> 7626                Redcar and Cleveland         807         Primary
#> 7627                Redcar and Cleveland         807       Secondary
#> 7628                Redcar and Cleveland         807         Special
#> 7629                    Stockton-on-Tees         808         Primary
#> 7630                    Stockton-on-Tees         808       Secondary
#> 7631                    Stockton-on-Tees         808         Special
#> 7632                          Darlington         841         Primary
#> 7633                          Darlington         841       Secondary
#> 7634                          Darlington         841         Special
#> 7635                       County Durham         840         Primary
#> 7636                       County Durham         840       Secondary
#> 7637                       County Durham         840         Special
#> 7638                      Northumberland         929         Primary
#> 7639                      Northumberland         929       Secondary
#> 7640                      Northumberland         929         Special
#> 7641                 Newcastle upon Tyne         391         Primary
#> 7642                 Newcastle upon Tyne         391       Secondary
#> 7643                 Newcastle upon Tyne         391         Special
#> 7644                      North Tyneside         392         Primary
#> 7645                      North Tyneside         392       Secondary
#> 7646                      North Tyneside         392         Special
#> 7647                      South Tyneside         393         Primary
#> 7648                      South Tyneside         393       Secondary
#> 7649                      South Tyneside         393         Special
#> 7650                          Sunderland         394         Primary
#> 7651                          Sunderland         394       Secondary
#> 7652                          Sunderland         394         Special
#> 7653                           Gateshead         390         Primary
#> 7654                           Gateshead         390       Secondary
#> 7655                           Gateshead         390         Special
#> 7656                                <NA>          NA     All schools
#> 7657                                <NA>          NA         Primary
#> 7658                                <NA>          NA       Secondary
#> 7659                                <NA>          NA         Special
#> 7660                              Halton         876         Primary
#> 7661                              Halton         876       Secondary
#> 7662                              Halton         876         Special
#> 7663                          Warrington         877         Primary
#> 7664                          Warrington         877       Secondary
#> 7665                          Warrington         877         Special
#> 7666               Blackburn with Darwen         889         Primary
#> 7667               Blackburn with Darwen         889       Secondary
#> 7668               Blackburn with Darwen         889         Special
#> 7669                           Blackpool         890         Primary
#> 7670                           Blackpool         890       Secondary
#> 7671                           Blackpool         890         Special
#> 7672                       Cheshire East         895         Primary
#> 7673                       Cheshire East         895       Secondary
#> 7674                       Cheshire East         895         Special
#> 7675           Cheshire West and Chester         896         Primary
#> 7676           Cheshire West and Chester         896       Secondary
#> 7677           Cheshire West and Chester         896         Special
#> 7678                          Cumberland         942         Primary
#> 7679                          Cumberland         942       Secondary
#> 7680                          Cumberland         942         Special
#> 7681             Westmorland and Furness         943         Primary
#> 7682             Westmorland and Furness         943       Secondary
#> 7683             Westmorland and Furness         943         Special
#> 7684                              Bolton         350         Primary
#> 7685                              Bolton         350       Secondary
#> 7686                              Bolton         350         Special
#> 7687                                Bury         351         Primary
#> 7688                                Bury         351       Secondary
#> 7689                                Bury         351         Special
#> 7690                          Manchester         352         Primary
#> 7691                          Manchester         352       Secondary
#> 7692                          Manchester         352         Special
#>      persistent_absence_percent
#> 1                         18.07
#> 2                         13.18
#> 3                         22.93
#> 4                         34.78
#> 5                         19.24
#> 6                         13.78
#> 7                         24.43
#> 8                         33.11
#> 9                         19.21
#> 10                        13.33
#> 11                        25.36
#> 12                        31.34
#> 13                        21.13
#> 14                        14.58
#> 15                        29.03
#> 16                        28.88
#> 17                         20.4
#> 18                        13.58
#> 19                        26.75
#> 20                        35.04
#> 21                         18.6
#> 22                        13.21
#> 23                        24.43
#> 24                        31.29
#> 25                        19.53
#> 26                        15.59
#> 27                        23.43
#> 28                         25.4
#> 29                        18.93
#> 30                        14.22
#> 31                         23.7
#> 32                        33.74
#> 33                        18.87
#> 34                        13.28
#> 35                        22.47
#> 36                        39.21
#> 37                        19.97
#> 38                        14.55
#> 39                        24.76
#> 40                        39.65
#> 41                        17.12
#> 42                        12.47
#> 43                        20.62
#> 44                        31.82
#> 45                        20.56
#> 46                        14.49
#> 47                        26.76
#> 48                        28.16
#> 49                        20.19
#> 50                        13.78
#> 51                        26.89
#> 52                         33.3
#> 53                        17.34
#> 54                        12.14
#> 55                        22.64
#> 56                        25.89
#> 57                        18.18
#> 58                        13.22
#> 59                        23.18
#> 60                        34.73
#> 61                        21.11
#> 62                        14.63
#> 63                        27.28
#> 64                        33.13
#> 65                        14.37
#> 66                         9.74
#> 67                        19.35
#> 68                        35.89
#> 69                        18.56
#> 70                        12.48
#> 71                        25.06
#> 72                        38.27
#> 73                        20.57
#> 74                        16.34
#> 75                        25.02
#> 76                        30.03
#> 77                         15.3
#> 78                        10.17
#> 79                        20.59
#> 80                        32.11
#> 81                        17.61
#> 82                        11.59
#> 83                        24.39
#> 84                        31.03
#> 85                        17.26
#> 86                        11.26
#> 87                        23.75
#> 88                        27.79
#> 89                        15.71
#> 90                          9.4
#> 91                        21.59
#> 92                        32.44
#> 93                        18.47
#> 94                        13.93
#> 95                        22.99
#> 96                        31.58
#> 97                        18.14
#> 98                        12.35
#> 99                        23.39
#> 100                       44.99
#> 101                       18.97
#> 102                       15.96
#> 103                       21.14
#> 104                       41.26
#> 105                       19.35
#> 106                       14.49
#> 107                        23.4
#> 108                       43.98
#> 109                       20.09
#> 110                       15.21
#> 111                       25.57
#> 112                       42.66
#> 113                       20.91
#> 114                       15.95
#> 115                       26.58
#> 116                       36.17
#> 117                       16.21
#> 118                       11.63
#> 119                       21.41
#> 120                       35.48
#> 121                       18.19
#> 122                       12.72
#> 123                       23.83
#> 124                       33.33
#> 125                        12.9
#> 126                        9.16
#> 127                        15.8
#> 128                       29.72
#> 129                       16.84
#> 130                       12.09
#> 131                       21.68
#> 132                       30.76
#> 133                       24.59
#> 134                       19.49
#> 135                       32.46
#> 136                       41.75
#> 137                       21.04
#> 138                       15.65
#> 139                       26.18
#> 140                       37.23
#> 141                       17.78
#> 142                        12.8
#> 143                       23.05
#> 144                       34.24
#> 145                       20.63
#> 146                       13.18
#> 147                       28.22
#> 148                       31.29
#> 149                       19.35
#> 150                       13.65
#> 151                       24.27
#> 152                       33.71
#> 153                       17.51
#> 154                       12.81
#> 155                       22.59
#> 156                       28.93
#> 157                       19.11
#> 158                        13.8
#> 159                       24.63
#> 160                       34.03
#> 161                        19.8
#> 162                       14.77
#> 163                       25.18
#> 164                       31.75
#> 165                       16.81
#> 166                       11.08
#> 167                       22.96
#> 168                       25.81
#> 169                       21.27
#> 170                       14.38
#> 171                        29.8
#> 172                       24.44
#> 173                       18.44
#> 174                       13.28
#> 175                       23.74
#> 176                       25.36
#> 177                       17.47
#> 178                       12.09
#> 179                       23.04
#> 180                       24.51
#> 181                       17.16
#> 182                       10.97
#> 183                        23.3
#> 184                        36.7
#> 185                       19.16
#> 186                       12.54
#> 187                       26.98
#> 188                       37.24
#> 189                       18.48
#> 190                       13.47
#> 191                       24.05
#> 192                       30.56
#> 193                       19.71
#> 194                       14.21
#> 195                       24.75
#> 196                       32.16
#> 197                       20.59
#> 198                       14.96
#> 199                       26.23
#> 200                       35.71
#> 201                          23
#> 202                        16.7
#> 203                       29.82
#> 204                       39.26
#> 205                       17.72
#> 206                       12.83
#> 207                       21.86
#> 208                       33.65
#> 209                       16.74
#> 210                       13.06
#> 211                       20.63
#> 212                       33.33
#> 213                       18.83
#> 214                       14.64
#> 215                          23
#> 216                       35.11
#> 217                       18.86
#> 218                       13.46
#> 219                       24.87
#> 220                       38.34
#> 221                       17.56
#> 222                       12.59
#> 223                       22.57
#> 224                       34.47
#> 225                       20.73
#> 226                       15.83
#> 227                       24.98
#> 228                       41.18
#> 229                       19.17
#> 230                        15.3
#> 231                       21.97
#> 232                        51.1
#> 233                       14.57
#> 234                        8.56
#> 235                        19.1
#> 236                       20.91
#> 237                       17.37
#> 238                       24.76
#> 239                       33.94
#> 240                       18.79
#> 241                       13.22
#> 242                       24.39
#> 243                       32.47
#> 244                        16.7
#> 245                       11.42
#> 246                       21.78
#> 247                       33.25
#> 248                       16.19
#> 249                       11.58
#> 250                       21.44
#> 251                       27.83
#> 252                       15.51
#> 253                       10.05
#> 254                       21.36
#> 255                       28.18
#> 256                       18.42
#> 257                       12.51
#> 258                       23.95
#> 259                       35.49
#> 260                       16.44
#> 261                       11.71
#> 262                       21.62
#> 263                       29.17
#> 264                       18.71
#> 265                       13.87
#> 266                        23.4
#> 267                       36.14
#> 268                       15.79
#> 269                        10.4
#> 270                       21.34
#> 271                       34.77
#> 272                       17.13
#> 273                       12.76
#> 274                        21.8
#> 275                        28.1
#> 276                       20.39
#> 277                       14.53
#> 278                       26.76
#> 279                       37.23
#> 280                       17.82
#> 281                       11.63
#> 282                        24.4
#> 283                       37.68
#> 284                       20.69
#> 285                        16.4
#> 286                       24.01
#> 287                       46.42
#> 288                       20.11
#> 289                        15.9
#> 290                       24.54
#> 291                       32.95
#> 292                       19.13
#> 293                       13.89
#> 294                       24.94
#> 295                        29.5
#> 296                       19.86
#> 297                       15.54
#> 298                        24.4
#> 299                       37.42
#> 300                       18.61
#> 301                       12.97
#> 302                       23.33
#> 303                       39.97
#> 304                       20.87
#> 305                       15.21
#> 306                        27.3
#> 307                       35.04
#> 308                       18.48
#> 309                       15.41
#> 310                       21.59
#> 311                       32.09
#> 312                       15.61
#> 313                       10.63
#> 314                       20.39
#> 315                       28.05
#> 316                       17.48
#> 317                        12.3
#> 318                       23.07
#> 319                       30.85
#> 320                       17.45
#> 321                       11.74
#> 322                       22.26
#> 323                       31.85
#> 324                       17.38
#> 325                       12.67
#> 326                       22.21
#> 327                       32.03
#> 328                       18.34
#> 329                       13.42
#> 330                       22.78
#> 331                       33.14
#> 332                       17.94
#> 333                       14.03
#> 334                       21.83
#> 335                       37.67
#> 336                       17.76
#> 337                        14.2
#> 338                       20.89
#> 339                       33.06
#> 340                       16.39
#> 341                       13.32
#> 342                       20.14
#> 343                       26.12
#> 344                        17.6
#> 345                       11.99
#> 346                       23.52
#> 347                       27.61
#> 348                       16.42
#> 349                       11.48
#> 350                       20.08
#> 351                       33.25
#> 352                       16.36
#> 353                       12.08
#> 354                       20.86
#> 355                       32.65
#> 356                        17.8
#> 357                       13.22
#> 358                       22.77
#> 359                       32.32
#> 360                       16.53
#> 361                       11.68
#> 362                       21.23
#> 363                       32.76
#> 364                       18.09
#> 365                       13.01
#> 366                        23.4
#> 367                       29.13
#> 368                       18.06
#> 369                       12.46
#> 370                       24.28
#> 371                       31.55
#> 372                       17.37
#> 373                       14.06
#> 374                       20.46
#> 375                       36.39
#> 376                           c
#> 377                           c
#> 378                       17.79
#> 379                        15.5
#> 380                       19.29
#> 381                       47.72
#> 382                        14.9
#> 383                       10.57
#> 384                       18.33
#> 385                       38.88
#> 386                       15.55
#> 387                       11.65
#> 388                       18.94
#> 389                       34.68
#> 390                       16.83
#> 391                       13.85
#> 392                       19.88
#> 393                       30.09
#> 394                       15.12
#> 395                       11.06
#> 396                       19.24
#> 397                       37.44
#> 398                        22.6
#> 399                       15.61
#> 400                       29.66
#> 401                       40.75
#> 402                       19.13
#> 403                       14.82
#> 404                       24.36
#> 405                       34.97
#> 406                       16.93
#> 407                       13.51
#> 408                       20.99
#> 409                       31.25
#> 410                        18.6
#> 411                       14.79
#> 412                       22.05
#> 413                       37.89
#> 414                       17.07
#> 415                       13.86
#> 416                       20.33
#> 417                       34.92
#> 418                       18.53
#> 419                       15.19
#> 420                        21.9
#> 421                       29.71
#> 422                       17.42
#> 423                       13.77
#> 424                       19.52
#> 425                       37.18
#> 426                       18.22
#> 427                       14.77
#> 428                       21.64
#> 429                       34.74
#> 430                       15.92
#> 431                       11.26
#> 432                       21.41
#> 433                       35.96
#> 434                       15.91
#> 435                          13
#> 436                       19.27
#> 437                       38.86
#> 438                        19.9
#> 439                       16.87
#> 440                       22.82
#> 441                       33.44
#> 442                       17.67
#> 443                       14.92
#> 444                       19.89
#> 445                       30.89
#> 446                       21.26
#> 447                       17.97
#> 448                       24.38
#> 449                       37.98
#> 450                       19.36
#> 451                       16.07
#> 452                       22.36
#> 453                       28.84
#> 454                       14.23
#> 455                       11.02
#> 456                       16.56
#> 457                       35.22
#> 458                       19.52
#> 459                       16.31
#> 460                       22.63
#> 461                        31.6
#> 462                       16.21
#> 463                       13.76
#> 464                       18.78
#> 465                       31.47
#> 466                       14.49
#> 467                       11.48
#> 468                       17.25
#> 469                       37.66
#> 470                        20.2
#> 471                       18.89
#> 472                       21.19
#> 473                        52.5
#> 474                       18.07
#> 475                       15.57
#> 476                       20.01
#> 477                       38.29
#> 478                       12.51
#> 479                        8.04
#> 480                       17.72
#> 481                       25.68
#> 482                        17.1
#> 483                       13.91
#> 484                       19.76
#> 485                       38.67
#> 486                       14.59
#> 487                       11.14
#> 488                       16.99
#> 489                       37.94
#> 490                       17.98
#> 491                       17.06
#> 492                       18.06
#> 493                        41.8
#> 494                       18.35
#> 495                       13.76
#> 496                       22.98
#> 497                       45.59
#> 498                       17.09
#> 499                       13.45
#> 500                       20.47
#> 501                       45.08
#> 502                       19.72
#> 503                       17.22
#> 504                       20.93
#> 505                       35.13
#> 506                       17.65
#> 507                       12.47
#> 508                       22.79
#> 509                       35.24
#> 510                       18.41
#> 511                       14.79
#> 512                       21.88
#> 513                       32.45
#> 514                       15.59
#> 515                       10.95
#> 516                       20.42
#> 517                       30.86
#> 518                       17.65
#> 519                       11.37
#> 520                       23.32
#> 521                       31.75
#> 522                       18.87
#> 523                        15.1
#> 524                       23.02
#> 525                       42.64
#> 526                       19.83
#> 527                       16.36
#> 528                       23.05
#> 529                       38.16
#> 530                       17.47
#> 531                       11.45
#> 532                       21.92
#> 533                       29.43
#> 534                       14.22
#> 535                        9.38
#> 536                       19.52
#> 537                       26.36
#> 538                       16.26
#> 539                       10.99
#> 540                       21.44
#> 541                       35.79
#> 542                       20.17
#> 543                        14.1
#> 544                       28.18
#> 545                       32.18
#> 546                       19.37
#> 547                       12.65
#> 548                       24.94
#> 549                          53
#> 550                       21.67
#> 551                       16.09
#> 552                       27.32
#> 553                       33.37
#> 554                       23.26
#> 555                       16.95
#> 556                       29.19
#> 557                       41.22
#> 558                       17.75
#> 559                       12.08
#> 560                       23.18
#> 561                       35.94
#> 562                       20.01
#> 563                       14.91
#> 564                       24.27
#> 565                       38.56
#> 566                       15.74
#> 567                       10.01
#> 568                       21.91
#> 569                        32.3
#> 570                       19.38
#> 571                       14.44
#> 572                       23.89
#> 573                       39.56
#> 574                       17.23
#> 575                       11.55
#> 576                       23.41
#> 577                       30.25
#> 578                       14.79
#> 579                       10.46
#> 580                       19.19
#> 581                       30.51
#> 582                       17.52
#> 583                       12.17
#> 584                       22.99
#> 585                       33.68
#> 586                       18.52
#> 587                       12.31
#> 588                       24.72
#> 589                       35.13
#> 590                       16.33
#> 591                       10.05
#> 592                       21.76
#> 593                       35.44
#> 594                       22.08
#> 595                       15.69
#> 596                       29.41
#> 597                       40.58
#> 598                       18.37
#> 599                       11.84
#> 600                       25.07
#> 601                       32.37
#> 602                       16.84
#> 603                       11.16
#> 604                       23.84
#> 605                       32.87
#> 606                       20.47
#> 607                       13.14
#> 608                       27.19
#> 609                       39.91
#> 610                       19.94
#> 611                       14.43
#> 612                       23.65
#> 613                       42.83
#> 614                       17.16
#> 615                        11.5
#> 616                       23.02
#> 617                       32.74
#> 618                        19.7
#> 619                        13.4
#> 620                       26.65
#> 621                       32.72
#> 622                           c
#> 623                           c
#> 624                       16.22
#> 625                       10.22
#> 626                        22.7
#> 627                       28.45
#> 628                       16.69
#> 629                       11.12
#> 630                       21.43
#> 631                       34.96
#> 632                       19.27
#> 633                       12.65
#> 634                       24.15
#> 635                        29.9
#> 636                       19.31
#> 637                       13.12
#> 638                       25.07
#> 639                       40.86
#> 640                       19.12
#> 641                       12.11
#> 642                       26.63
#> 643                       34.29
#> 644                       17.23
#> 645                        11.7
#> 646                       22.77
#> 647                       33.77
#> 648                       17.83
#> 649                       13.13
#> 650                       22.47
#> 651                       34.65
#> 652                       19.14
#> 653                        13.8
#> 654                        24.2
#> 655                       32.93
#> 656                       19.12
#> 657                       13.36
#> 658                       25.12
#> 659                       31.34
#> 660                       20.94
#> 661                       14.58
#> 662                       28.58
#> 663                       28.96
#> 664                       20.19
#> 665                       13.49
#> 666                       26.44
#> 667                       34.26
#> 668                        18.5
#> 669                       13.35
#> 670                       24.07
#> 671                       30.65
#> 672                       19.37
#> 673                       15.32
#> 674                       23.37
#> 675                        25.4
#> 676                       18.91
#> 677                       14.31
#> 678                       23.55
#> 679                       33.35
#> 680                       18.78
#> 681                       13.29
#> 682                       22.25
#> 683                       39.55
#> 684                       19.93
#> 685                       14.68
#> 686                       24.53
#> 687                       39.46
#> 688                       16.91
#> 689                       12.26
#> 690                       20.39
#> 691                       31.82
#> 692                       20.48
#> 693                       14.59
#> 694                       26.49
#> 695                       27.86
#> 696                       20.14
#> 697                       13.84
#> 698                       26.77
#> 699                       32.57
#> 700                       17.22
#> 701                       12.15
#> 702                       22.34
#> 703                       26.01
#> 704                       17.98
#> 705                       13.15
#> 706                       22.81
#> 707                       34.59
#> 708                       21.06
#> 709                       14.38
#> 710                       27.42
#> 711                       33.54
#> 712                          14
#> 713                        9.52
#> 714                        18.8
#> 715                       35.55
#> 716                       18.46
#> 717                       12.47
#> 718                       24.82
#> 719                       38.72
#> 720                       20.31
#> 721                       16.25
#> 722                       24.56
#> 723                       29.74
#> 724                        14.9
#> 725                        9.98
#> 726                       19.98
#> 727                       31.54
#> 728                       17.35
#> 729                       11.46
#> 730                       23.97
#> 731                       30.67
#> 732                       17.13
#> 733                       11.25
#> 734                        23.5
#> 735                       27.58
#> 736                       15.43
#> 737                        9.32
#> 738                       21.08
#> 739                       33.11
#> 740                       18.31
#> 741                       13.86
#> 742                        22.7
#> 743                       31.84
#> 744                       17.88
#> 745                       12.23
#> 746                       22.96
#> 747                        44.9
#> 748                       18.86
#> 749                       15.94
#> 750                       20.89
#> 751                       41.22
#> 752                       19.17
#> 753                       14.52
#> 754                       22.95
#> 755                       43.68
#> 756                       19.92
#> 757                       15.22
#> 758                       25.17
#> 759                       42.25
#> 760                       20.67
#> 761                       15.76
#> 762                       26.25
#> 763                        36.4
#> 764                       16.08
#> 765                       11.49
#> 766                       21.26
#> 767                       35.51
#> 768                       18.08
#> 769                       12.65
#> 770                       23.67
#> 771                       33.22
#> 772                       12.65
#> 773                        9.41
#> 774                       15.08
#> 775                       28.62
#> 776                       16.74
#> 777                       12.06
#> 778                       21.51
#> 779                       30.26
#> 780                       24.47
#> 781                       19.24
#> 782                       32.47
#> 783                       42.58
#> 784                       20.84
#> 785                       15.69
#> 786                       25.68
#> 787                       37.29
#> 788                       17.52
#> 789                       12.68
#> 790                       22.63
#> 791                       33.86
#> 792                       20.39
#> 793                       13.03
#> 794                       27.87
#> 795                       30.97
#> 796                       19.05
#> 797                       13.46
#> 798                       23.89
#> 799                       33.09
#> 800                       17.33
#> 801                       12.79
#> 802                       22.22
#> 803                       28.89
#> 804                       18.92
#> 805                       13.74
#> 806                       24.29
#> 807                       33.87
#> 808                       19.73
#> 809                       14.78
#> 810                       25.01
#> 811                       32.08
#> 812                       16.45
#> 813                       10.84
#> 814                       22.47
#> 815                        26.1
#> 816                          21
#> 817                        14.2
#> 818                       29.43
#> 819                       23.15
#> 820                       18.25
#> 821                       13.05
#> 822                       23.53
#> 823                       26.51
#> 824                       17.41
#> 825                       12.17
#> 826                       22.78
#> 827                       25.29
#> 828                       16.83
#> 829                       10.89
#> 830                       22.68
#> 831                       36.44
#> 832                       18.94
#> 833                       12.36
#> 834                       26.68
#> 835                        37.7
#> 836                       18.24
#> 837                       13.41
#> 838                       23.63
#> 839                       29.43
#> 840                       19.58
#> 841                        14.2
#> 842                       24.48
#> 843                       32.28
#> 844                       20.27
#> 845                       14.81
#> 846                       25.71
#> 847                        35.7
#> 848                       22.89
#> 849                       16.72
#> 850                       29.57
#> 851                       38.52
#> 852                       17.47
#> 853                       12.82
#> 854                       21.42
#> 855                       32.33
#> 856                       16.64
#> 857                       13.02
#> 858                       20.43
#> 859                       33.82
#> 860                       18.72
#> 861                       14.64
#> 862                       22.76
#> 863                       34.93
#> 864                       18.72
#> 865                        13.4
#> 866                       24.61
#> 867                       37.95
#> 868                       17.33
#> 869                        12.5
#> 870                       22.18
#> 871                       34.18
#> 872                       20.44
#> 873                       15.64
#> 874                       24.58
#> 875                       41.03
#> 876                       19.26
#> 877                       15.51
#> 878                       21.98
#> 879                       50.47
#> 880                       14.31
#> 881                        8.97
#> 882                       18.34
#> 883                       20.76
#> 884                       17.28
#> 885                       24.54
#> 886                       33.79
#> 887                       18.64
#> 888                       13.16
#> 889                       24.15
#> 890                        31.9
#> 891                       16.46
#> 892                       11.35
#> 893                       21.32
#> 894                       33.58
#> 895                       15.94
#> 896                       11.48
#> 897                       21.03
#> 898                       27.69
#> 899                       15.37
#> 900                       10.07
#> 901                       21.03
#> 902                       28.03
#> 903                       17.93
#> 904                       12.24
#> 905                       23.22
#> 906                       34.84
#> 907                       16.16
#> 908                       11.51
#> 909                       21.23
#> 910                       29.19
#> 911                       18.45
#> 912                        13.8
#> 913                       22.94
#> 914                       35.89
#> 915                       15.65
#> 916                       10.42
#> 917                       21.03
#> 918                        34.5
#> 919                       16.77
#> 920                       12.76
#> 921                       21.02
#> 922                       27.47
#> 923                       20.12
#> 924                       14.44
#> 925                       26.29
#> 926                       36.81
#> 927                       17.58
#> 928                       11.49
#> 929                       24.05
#> 930                       37.15
#> 931                       20.39
#> 932                       16.33
#> 933                       23.45
#> 934                       46.29
#> 935                       20.19
#> 936                       15.96
#> 937                       24.74
#> 938                        33.2
#> 939                       18.81
#> 940                       13.83
#> 941                       24.32
#> 942                       28.75
#> 943                       19.64
#> 944                       15.51
#> 945                       23.95
#> 946                       37.22
#> 947                        18.2
#> 948                       12.74
#> 949                       22.72
#> 950                       39.84
#> 951                       20.54
#> 952                       15.06
#> 953                       26.75
#> 954                       34.68
#> 955                       18.31
#> 956                        15.3
#> 957                       21.37
#> 958                       31.36
#> 959                        15.4
#> 960                       10.55
#> 961                       20.05
#> 962                        27.8
#> 963                       17.16
#> 964                       12.25
#> 965                       22.43
#> 966                       30.75
#> 967                       17.11
#> 968                       11.58
#> 969                       21.73
#> 970                       31.75
#> 971                        17.1
#> 972                       12.63
#> 973                       21.65
#> 974                       31.97
#> 975                       18.01
#> 976                       13.41
#> 977                       22.14
#> 978                       32.41
#> 979                       17.98
#> 980                       14.18
#> 981                       21.71
#> 982                       38.13
#> 983                       17.47
#> 984                       14.21
#> 985                       20.27
#> 986                       32.57
#> 987                       16.13
#> 988                       13.08
#> 989                       19.82
#> 990                       26.77
#> 991                       17.49
#> 992                       11.95
#> 993                        23.3
#> 994                       28.38
#> 995                       16.13
#> 996                       11.36
#> 997                       19.66
#> 998                       32.87
#> 999                       16.13
#> 1000                      12.13
#> 1001                      20.26
#> 1002                      33.05
#> 1003                      17.53
#> 1004                      13.11
#> 1005                       22.3
#> 1006                      32.06
#> 1007                      16.03
#> 1008                      11.68
#> 1009                      20.14
#> 1010                      32.89
#> 1011                      17.91
#> 1012                      13.01
#> 1013                      23.03
#> 1014                      28.77
#> 1015                      17.89
#> 1016                      12.39
#> 1017                      23.99
#> 1018                      31.25
#> 1019                      17.24
#> 1020                      14.13
#> 1021                      20.07
#> 1022                      36.46
#> 1023                          c
#> 1024                          c
#> 1025                      17.75
#> 1026                      15.69
#> 1027                      19.02
#> 1028                       47.8
#> 1029                       14.7
#> 1030                      10.57
#> 1031                      17.94
#> 1032                      38.24
#> 1033                       15.4
#> 1034                      11.56
#> 1035                      18.67
#> 1036                      35.27
#> 1037                      16.98
#> 1038                      13.97
#> 1039                      20.04
#> 1040                      30.21
#> 1041                      14.76
#> 1042                      10.92
#> 1043                      18.62
#> 1044                      37.31
#> 1045                      22.27
#> 1046                      15.83
#> 1047                      28.72
#> 1048                      40.21
#> 1049                      18.99
#> 1050                      14.93
#> 1051                      23.84
#> 1052                      34.72
#> 1053                      16.69
#> 1054                      13.35
#> 1055                      20.61
#> 1056                      31.47
#> 1057                       18.4
#> 1058                      14.86
#> 1059                      21.55
#> 1060                      37.83
#> 1061                         17
#> 1062                      13.94
#> 1063                       20.1
#> 1064                      34.07
#> 1065                      18.49
#> 1066                      15.34
#> 1067                      21.66
#> 1068                      29.48
#> 1069                      16.96
#> 1070                      13.81
#> 1071                      18.48
#> 1072                      37.69
#> 1073                      18.18
#> 1074                      14.82
#> 1075                      21.46
#> 1076                      35.01
#> 1077                      15.79
#> 1078                      11.54
#> 1079                      20.73
#> 1080                      36.49
#> 1081                      15.74
#> 1082                      13.04
#> 1083                      18.79
#> 1084                      38.86
#> 1085                       19.8
#> 1086                      16.86
#> 1087                      22.58
#> 1088                      33.67
#> 1089                       17.6
#> 1090                       15.1
#> 1091                      19.56
#> 1092                      30.97
#> 1093                      21.01
#> 1094                      17.86
#> 1095                      23.91
#> 1096                      38.18
#> 1097                      19.24
#> 1098                      15.84
#> 1099                       22.4
#> 1100                      27.91
#> 1101                      13.82
#> 1102                      11.07
#> 1103                      15.64
#> 1104                      35.22
#> 1105                      19.34
#> 1106                       16.4
#> 1107                      22.17
#> 1108                      30.65
#> 1109                      16.15
#> 1110                       13.7
#> 1111                      18.69
#> 1112                      32.05
#> 1113                      14.58
#> 1114                      11.61
#> 1115                      17.25
#> 1116                      37.85
#> 1117                      20.34
#> 1118                      19.05
#> 1119                      21.31
#> 1120                      52.86
#> 1121                      17.73
#> 1122                      15.85
#> 1123                      19.03
#> 1124                      38.29
#> 1125                      12.35
#> 1126                       8.25
#> 1127                      17.05
#> 1128                      26.89
#> 1129                      17.12
#> 1130                      14.03
#> 1131                      19.66
#> 1132                      39.09
#> 1133                      14.16
#> 1134                      11.26
#> 1135                      16.01
#> 1136                      38.49
#> 1137                       18.2
#> 1138                      17.37
#> 1139                       18.2
#> 1140                      41.34
#> 1141                       18.2
#> 1142                      13.85
#> 1143                       22.5
#> 1144                      45.89
#> 1145                      16.93
#> 1146                      13.48
#> 1147                      19.98
#> 1148                      45.43
#> 1149                      19.57
#> 1150                      17.01
#> 1151                      20.82
#> 1152                      34.77
#> 1153                      17.29
#> 1154                       12.4
#> 1155                      22.07
#> 1156                      35.18
#> 1157                      18.04
#> 1158                      14.61
#> 1159                      21.26
#> 1160                      32.26
#> 1161                      15.36
#> 1162                      11.01
#> 1163                      19.85
#> 1164                      31.61
#> 1165                      17.19
#> 1166                      11.18
#> 1167                      22.56
#> 1168                      32.61
#> 1169                      18.75
#> 1170                      15.13
#> 1171                      22.63
#> 1172                      43.67
#> 1173                      19.29
#> 1174                      16.48
#> 1175                      21.76
#> 1176                      39.31
#> 1177                      17.12
#> 1178                      11.41
#> 1179                      21.26
#> 1180                         30
#> 1181                      13.67
#> 1182                       9.22
#> 1183                      18.43
#> 1184                      27.27
#> 1185                      15.94
#> 1186                      11.04
#> 1187                      20.71
#> 1188                      35.12
#> 1189                       19.8
#> 1190                      14.01
#> 1191                      27.34
#> 1192                      33.48
#> 1193                      19.11
#> 1194                       12.6
#> 1195                      24.45
#> 1196                       52.1
#> 1197                      21.35
#> 1198                      15.89
#> 1199                      26.86
#> 1200                      33.01
#> 1201                       22.8
#> 1202                      16.64
#> 1203                      28.58
#> 1204                      40.83
#> 1205                      16.85
#> 1206                      12.03
#> 1207                       21.3
#> 1208                      35.94
#> 1209                      19.82
#> 1210                      14.77
#> 1211                      24.03
#> 1212                      38.44
#> 1213                      15.51
#> 1214                       9.95
#> 1215                      21.51
#> 1216                      31.83
#> 1217                      18.97
#> 1218                      14.39
#> 1219                      23.05
#> 1220                      39.48
#> 1221                      17.01
#> 1222                      11.54
#> 1223                      22.93
#> 1224                      29.92
#> 1225                      14.48
#> 1226                      10.41
#> 1227                      18.55
#> 1228                      30.61
#> 1229                      17.15
#> 1230                      12.06
#> 1231                      22.28
#> 1232                      33.75
#> 1233                      18.23
#> 1234                      12.21
#> 1235                      24.22
#> 1236                      34.84
#> 1237                      16.03
#> 1238                       9.86
#> 1239                      21.28
#> 1240                      36.02
#> 1241                       21.8
#> 1242                      15.56
#> 1243                      28.94
#> 1244                      40.34
#> 1245                      17.85
#> 1246                      11.69
#> 1247                      24.12
#> 1248                      32.37
#> 1249                      16.64
#> 1250                      11.01
#> 1251                      23.57
#> 1252                       32.1
#> 1253                      20.12
#> 1254                      12.86
#> 1255                      26.78
#> 1256                      39.45
#> 1257                      19.46
#> 1258                      14.17
#> 1259                      22.98
#> 1260                      42.07
#> 1261                      16.83
#> 1262                      11.32
#> 1263                      22.52
#> 1264                      32.29
#> 1265                      19.44
#> 1266                      13.31
#> 1267                      26.19
#> 1268                      32.78
#> 1269                          c
#> 1270                          c
#> 1271                      15.97
#> 1272                      10.22
#> 1273                      22.14
#> 1274                      28.77
#> 1275                      16.45
#> 1276                      11.05
#> 1277                      21.03
#> 1278                      34.02
#> 1279                      18.96
#> 1280                      12.56
#> 1281                      23.67
#> 1282                      29.54
#> 1283                      19.08
#> 1284                         13
#> 1285                      24.73
#> 1286                      40.65
#> 1287                      18.88
#> 1288                      12.06
#> 1289                      26.17
#> 1290                      34.11
#> 1291                      16.89
#> 1292                      11.68
#> 1293                      22.07
#> 1294                      33.38
#> 1295                      17.92
#> 1296                      13.45
#> 1297                      22.24
#> 1298                      34.87
#> 1299                      19.31
#> 1300                      14.01
#> 1301                      24.25
#> 1302                      33.35
#> 1303                      19.23
#> 1304                      13.92
#> 1305                      24.71
#> 1306                       31.8
#> 1307                      21.22
#> 1308                      15.05
#> 1309                      28.62
#> 1310                      29.12
#> 1311                      20.32
#> 1312                      13.63
#> 1313                      26.53
#> 1314                       34.9
#> 1315                      18.62
#> 1316                      13.29
#> 1317                      24.21
#> 1318                      31.18
#> 1319                       19.5
#> 1320                      15.66
#> 1321                      23.24
#> 1322                      26.22
#> 1323                      19.08
#> 1324                      14.44
#> 1325                      23.64
#> 1326                       33.8
#> 1327                      18.84
#> 1328                      13.21
#> 1329                       22.1
#> 1330                       40.4
#> 1331                       20.1
#> 1332                      15.03
#> 1333                      24.51
#> 1334                      39.59
#> 1335                      17.14
#> 1336                      12.41
#> 1337                       20.7
#> 1338                      32.06
#> 1339                      20.71
#> 1340                      14.88
#> 1341                      26.64
#> 1342                      28.46
#> 1343                      20.29
#> 1344                      14.12
#> 1345                      26.77
#> 1346                      32.37
#> 1347                      17.54
#> 1348                      12.42
#> 1349                      22.71
#> 1350                      26.54
#> 1351                       18.2
#> 1352                      13.49
#> 1353                       22.8
#> 1354                      34.79
#> 1355                      21.48
#> 1356                      14.99
#> 1357                      27.52
#> 1358                      32.99
#> 1359                      14.25
#> 1360                       9.51
#> 1361                      18.77
#> 1362                      35.22
#> 1363                      18.89
#> 1364                      13.19
#> 1365                      24.84
#> 1366                      38.95
#> 1367                      20.69
#> 1368                      16.85
#> 1369                      24.67
#> 1370                      30.09
#> 1371                      14.62
#> 1372                      10.16
#> 1373                      19.33
#> 1374                       31.3
#> 1375                      17.43
#> 1376                      11.56
#> 1377                      23.65
#> 1378                      31.03
#> 1379                       17.4
#> 1380                       11.5
#> 1381                      23.75
#> 1382                      26.74
#> 1383                      15.69
#> 1384                       9.74
#> 1385                      21.23
#> 1386                      31.77
#> 1387                      18.59
#> 1388                      14.35
#> 1389                      22.61
#> 1390                      33.16
#> 1391                      18.27
#> 1392                      12.63
#> 1393                      23.58
#> 1394                      43.81
#> 1395                      19.13
#> 1396                      16.48
#> 1397                      20.79
#> 1398                      41.38
#> 1399                      19.55
#> 1400                      15.05
#> 1401                      22.98
#> 1402                      43.83
#> 1403                      20.16
#> 1404                      15.35
#> 1405                      25.31
#> 1406                      41.98
#> 1407                      20.64
#> 1408                      15.92
#> 1409                         26
#> 1410                      36.02
#> 1411                      16.43
#> 1412                      11.77
#> 1413                      21.39
#> 1414                      34.76
#> 1415                      18.55
#> 1416                      13.01
#> 1417                       23.9
#> 1418                      34.45
#> 1419                      12.51
#> 1420                       9.71
#> 1421                      14.54
#> 1422                      29.12
#> 1423                      16.88
#> 1424                       12.2
#> 1425                      21.57
#> 1426                      31.04
#> 1427                      24.52
#> 1428                      19.39
#> 1429                      32.45
#> 1430                      41.72
#> 1431                       21.1
#> 1432                      15.96
#> 1433                      25.94
#> 1434                      37.52
#> 1435                      17.72
#> 1436                      12.96
#> 1437                       22.7
#> 1438                      33.18
#> 1439                       20.6
#> 1440                      13.41
#> 1441                      27.94
#> 1442                      31.81
#> 1443                       19.2
#> 1444                      13.74
#> 1445                       23.7
#> 1446                      33.76
#> 1447                      17.52
#> 1448                      13.12
#> 1449                      22.17
#> 1450                      28.98
#> 1451                      19.12
#> 1452                      14.05
#> 1453                      24.29
#> 1454                      34.47
#> 1455                      19.67
#> 1456                      14.94
#> 1457                      24.91
#> 1458                      29.42
#> 1459                      16.56
#> 1460                      11.11
#> 1461                      22.41
#> 1462                       26.1
#> 1463                      20.99
#> 1464                      14.23
#> 1465                      29.39
#> 1466                      22.51
#> 1467                      18.51
#> 1468                      13.51
#> 1469                      23.59
#> 1470                      26.22
#> 1471                      17.61
#> 1472                      12.37
#> 1473                      23.02
#> 1474                      29.32
#> 1475                      16.91
#> 1476                      11.23
#> 1477                      22.46
#> 1478                      36.68
#> 1479                      19.33
#> 1480                      12.75
#> 1481                      26.69
#> 1482                      37.24
#> 1483                       18.4
#> 1484                      13.77
#> 1485                      23.53
#> 1486                      30.13
#> 1487                      19.88
#> 1488                       14.6
#> 1489                      24.85
#> 1490                      32.79
#> 1491                      20.62
#> 1492                      15.35
#> 1493                      25.52
#> 1494                      38.18
#> 1495                      23.17
#> 1496                      17.13
#> 1497                      29.69
#> 1498                      39.37
#> 1499                      17.61
#> 1500                      13.24
#> 1501                       21.3
#> 1502                       32.2
#> 1503                      16.99
#> 1504                      13.34
#> 1505                      20.58
#> 1506                      33.58
#> 1507                      18.88
#> 1508                      14.83
#> 1509                      22.79
#> 1510                      35.03
#> 1511                      18.83
#> 1512                      13.52
#> 1513                      24.63
#> 1514                      38.65
#> 1515                      17.44
#> 1516                      12.76
#> 1517                      22.09
#> 1518                      34.23
#> 1519                      20.41
#> 1520                      15.88
#> 1521                       24.5
#> 1522                      38.37
#> 1523                      19.52
#> 1524                      16.04
#> 1525                       21.9
#> 1526                      49.93
#> 1527                      14.64
#> 1528                        9.2
#> 1529                      18.73
#> 1530                      20.95
#> 1531                      17.61
#> 1532                      24.57
#> 1533                      33.64
#> 1534                      18.67
#> 1535                      13.44
#> 1536                      24.02
#> 1537                      32.58
#> 1538                      16.64
#> 1539                      11.64
#> 1540                      21.33
#> 1541                      33.75
#> 1542                      15.98
#> 1543                      11.63
#> 1544                      20.75
#> 1545                      28.44
#> 1546                      15.61
#> 1547                      10.39
#> 1548                      21.18
#> 1549                      28.25
#> 1550                       17.8
#> 1551                      12.27
#> 1552                      22.87
#> 1553                      35.09
#> 1554                      16.34
#> 1555                      11.79
#> 1556                      21.27
#> 1557                      29.31
#> 1558                       18.6
#> 1559                      14.12
#> 1560                      22.73
#> 1561                      36.22
#> 1562                      15.92
#> 1563                       10.8
#> 1564                      21.13
#> 1565                      35.05
#> 1566                      16.76
#> 1567                       12.8
#> 1568                      20.46
#> 1569                      27.34
#> 1570                      20.22
#> 1571                      14.65
#> 1572                      26.21
#> 1573                      36.24
#> 1574                      17.58
#> 1575                      11.46
#> 1576                      23.81
#> 1577                      37.15
#> 1578                       20.6
#> 1579                      16.89
#> 1580                      23.18
#> 1581                      46.53
#> 1582                      20.34
#> 1583                      16.29
#> 1584                      24.66
#> 1585                      33.44
#> 1586                       18.7
#> 1587                      13.95
#> 1588                      23.86
#> 1589                      28.74
#> 1590                      19.81
#> 1591                      15.82
#> 1592                      23.94
#> 1593                      36.88
#> 1594                       18.2
#> 1595                      12.86
#> 1596                      22.64
#> 1597                      39.43
#> 1598                      20.93
#> 1599                      15.37
#> 1600                      26.47
#> 1601                      35.56
#> 1602                      18.83
#> 1603                      16.09
#> 1604                      21.34
#> 1605                      31.36
#> 1606                      15.47
#> 1607                       10.7
#> 1608                       19.9
#> 1609                      28.13
#> 1610                      17.38
#> 1611                      12.69
#> 1612                      22.19
#> 1613                      33.02
#> 1614                      17.15
#> 1615                       11.9
#> 1616                      21.43
#> 1617                      32.38
#> 1618                      17.11
#> 1619                      12.89
#> 1620                      21.32
#> 1621                      31.99
#> 1622                      18.08
#> 1623                      13.56
#> 1624                      22.26
#> 1625                      32.41
#> 1626                      18.44
#> 1627                      14.75
#> 1628                       21.9
#> 1629                      38.58
#> 1630                      17.46
#> 1631                      14.63
#> 1632                      19.65
#> 1633                      32.13
#> 1634                      16.34
#> 1635                      13.41
#> 1636                      19.88
#> 1637                      26.82
#> 1638                       17.5
#> 1639                      12.12
#> 1640                      23.07
#> 1641                       27.8
#> 1642                      16.15
#> 1643                      11.64
#> 1644                      19.49
#> 1645                      33.33
#> 1646                      16.23
#> 1647                      12.47
#> 1648                      20.05
#> 1649                      33.35
#> 1650                      17.61
#> 1651                      13.46
#> 1652                      22.04
#> 1653                      31.83
#> 1654                       15.6
#> 1655                      11.86
#> 1656                      18.98
#> 1657                      32.85
#> 1658                      17.99
#> 1659                      13.12
#> 1660                      23.05
#> 1661                      29.09
#> 1662                      18.13
#> 1663                      12.61
#> 1664                      24.04
#> 1665                      31.24
#> 1666                      17.35
#> 1667                      14.63
#> 1668                      19.72
#> 1669                      36.77
#> 1670                          c
#> 1671                          c
#> 1672                      18.11
#> 1673                      16.29
#> 1674                      19.11
#> 1675                       48.2
#> 1676                      14.43
#> 1677                      11.13
#> 1678                      17.04
#> 1679                      38.33
#> 1680                      15.48
#> 1681                      11.96
#> 1682                      18.34
#> 1683                      35.35
#> 1684                      16.94
#> 1685                      14.39
#> 1686                      19.45
#> 1687                      30.09
#> 1688                       14.6
#> 1689                      11.26
#> 1690                      17.77
#> 1691                      38.53
#> 1692                      22.36
#> 1693                      16.51
#> 1694                      28.11
#> 1695                      41.58
#> 1696                      19.24
#> 1697                      15.53
#> 1698                      23.61
#> 1699                      34.75
#> 1700                      16.88
#> 1701                         14
#> 1702                      19.77
#> 1703                      32.01
#> 1704                      18.39
#> 1705                      15.17
#> 1706                       21.1
#> 1707                      38.23
#> 1708                      17.21
#> 1709                      14.24
#> 1710                       20.2
#> 1711                      34.25
#> 1712                      18.75
#> 1713                      15.78
#> 1714                      21.72
#> 1715                      29.71
#> 1716                      16.49
#> 1717                      13.93
#> 1718                      17.34
#> 1719                      38.38
#> 1720                      18.39
#> 1721                      15.12
#> 1722                      21.49
#> 1723                       35.6
#> 1724                      15.55
#> 1725                      12.06
#> 1726                       19.5
#> 1727                      36.12
#> 1728                         16
#> 1729                      13.62
#> 1730                       18.7
#> 1731                      36.71
#> 1732                      20.08
#> 1733                      17.52
#> 1734                      22.31
#> 1735                      34.38
#> 1736                      17.88
#> 1737                      15.75
#> 1738                      19.41
#> 1739                      32.13
#> 1740                       20.8
#> 1741                      18.34
#> 1742                      23.05
#> 1743                      37.67
#> 1744                      19.36
#> 1745                      16.37
#> 1746                      22.04
#> 1747                       29.3
#> 1748                       13.5
#> 1749                      11.31
#> 1750                      14.66
#> 1751                      34.97
#> 1752                      19.57
#> 1753                      16.85
#> 1754                      22.07
#> 1755                      32.22
#> 1756                      16.44
#> 1757                       14.1
#> 1758                      18.85
#> 1759                      32.09
#> 1760                      14.82
#> 1761                      12.13
#> 1762                      17.14
#> 1763                      37.66
#> 1764                      20.79
#> 1765                      19.78
#> 1766                      21.54
#> 1767                      52.52
#> 1768                      17.83
#> 1769                      16.43
#> 1770                      18.61
#> 1771                       38.9
#> 1772                      12.35
#> 1773                       8.66
#> 1774                      16.53
#> 1775                      27.19
#> 1776                      17.39
#> 1777                      14.49
#> 1778                       19.7
#> 1779                      39.51
#> 1780                      13.93
#> 1781                      11.75
#> 1782                      15.04
#> 1783                      38.33
#> 1784                      18.66
#> 1785                      18.08
#> 1786                      18.32
#> 1787                      41.63
#> 1788                      18.34
#> 1789                      14.13
#> 1790                      22.46
#> 1791                      46.26
#> 1792                         17
#> 1793                      13.95
#> 1794                      19.48
#> 1795                       45.2
#> 1796                      19.75
#> 1797                       17.5
#> 1798                      20.76
#> 1799                      34.89
#> 1800                      17.23
#> 1801                      12.69
#> 1802                      21.57
#> 1803                      35.41
#> 1804                       18.1
#> 1805                       15.1
#> 1806                       20.7
#> 1807                      33.14
#> 1808                      15.07
#> 1809                      10.71
#> 1810                      19.57
#> 1811                      31.03
#> 1812                      16.67
#> 1813                      11.15
#> 1814                      21.68
#> 1815                       31.6
#> 1816                      18.48
#> 1817                      15.39
#> 1818                      21.74
#> 1819                      41.04
#> 1820                      19.02
#> 1821                      17.13
#> 1822                      20.54
#> 1823                       37.2
#> 1824                      17.18
#> 1825                      11.75
#> 1826                         21
#> 1827                      34.87
#> 1828                      13.06
#> 1829                       9.06
#> 1830                      17.03
#> 1831                      26.55
#> 1832                      15.98
#> 1833                      11.44
#> 1834                      20.11
#> 1835                      35.34
#> 1836                      19.82
#> 1837                      14.35
#> 1838                      26.77
#> 1839                      33.26
#> 1840                      19.06
#> 1841                      12.69
#> 1842                      24.26
#> 1843                      51.99
#> 1844                      21.21
#> 1845                       16.2
#> 1846                      26.51
#> 1847                      32.69
#> 1848                      22.95
#> 1849                      16.96
#> 1850                       28.2
#> 1851                      41.77
#> 1852                      16.28
#> 1853                      12.42
#> 1854                      19.63
#> 1855                      36.59
#> 1856                       19.9
#> 1857                      15.02
#> 1858                      24.13
#> 1859                      38.39
#> 1860                      15.58
#> 1861                      10.17
#> 1862                      21.37
#> 1863                         32
#> 1864                      18.93
#> 1865                      14.69
#> 1866                      22.58
#> 1867                      39.52
#> 1868                      16.99
#> 1869                      11.85
#> 1870                      22.56
#> 1871                       30.2
#> 1872                      14.43
#> 1873                      10.68
#> 1874                      18.09
#> 1875                      30.57
#> 1876                      17.26
#> 1877                      12.47
#> 1878                      22.07
#> 1879                      34.11
#> 1880                      18.18
#> 1881                       12.4
#> 1882                      23.94
#> 1883                      34.75
#> 1884                      16.13
#> 1885                       9.97
#> 1886                      21.33
#> 1887                      37.04
#> 1888                      21.88
#> 1889                      15.82
#> 1890                       28.7
#> 1891                      40.86
#> 1892                      17.77
#> 1893                      11.83
#> 1894                      23.82
#> 1895                      31.19
#> 1896                      16.75
#> 1897                      11.16
#> 1898                      23.48
#> 1899                      31.18
#> 1900                       19.9
#> 1901                      13.02
#> 1902                      26.42
#> 1903                      36.56
#> 1904                      19.66
#> 1905                      14.45
#> 1906                      23.09
#> 1907                      42.45
#> 1908                      16.95
#> 1909                      11.43
#> 1910                       22.5
#> 1911                      32.81
#> 1912                      19.52
#> 1913                       13.6
#> 1914                      25.97
#> 1915                      32.84
#> 1916                          c
#> 1917                          c
#> 1918                      15.84
#> 1919                       10.3
#> 1920                      21.82
#> 1921                      28.82
#> 1922                       16.4
#> 1923                       11.2
#> 1924                      20.75
#> 1925                      34.59
#> 1926                      18.92
#> 1927                      12.73
#> 1928                      23.46
#> 1929                      29.58
#> 1930                      18.99
#> 1931                      13.22
#> 1932                      24.45
#> 1933                      40.75
#> 1934                      18.56
#> 1935                      12.17
#> 1936                      25.53
#> 1937                      34.53
#> 1938                      16.86
#> 1939                      11.95
#> 1940                      21.74
#> 1941                      32.77
#> 1942                      18.12
#> 1943                      13.78
#> 1944                      22.28
#> 1945                      35.22
#> 1946                       19.6
#> 1947                      14.38
#> 1948                      24.42
#> 1949                      33.71
#> 1950                      19.55
#> 1951                      14.38
#> 1952                      24.87
#> 1953                       31.8
#> 1954                      21.36
#> 1955                      15.32
#> 1956                      28.57
#> 1957                      29.51
#> 1958                      20.47
#> 1959                      13.74
#> 1960                       26.7
#> 1961                      35.27
#> 1962                      18.61
#> 1963                      13.38
#> 1964                       24.1
#> 1965                      30.91
#> 1966                      20.03
#> 1967                      16.13
#> 1968                      23.92
#> 1969                      25.41
#> 1970                      19.32
#> 1971                      14.81
#> 1972                      23.72
#> 1973                      34.22
#> 1974                       19.2
#> 1975                      13.67
#> 1976                      22.37
#> 1977                      40.63
#> 1978                      20.43
#> 1979                      15.51
#> 1980                       24.7
#> 1981                      39.47
#> 1982                      17.54
#> 1983                      12.84
#> 1984                      21.05
#> 1985                      32.06
#> 1986                      21.15
#> 1987                      15.38
#> 1988                      26.92
#> 1989                      30.32
#> 1990                      20.54
#> 1991                      14.43
#> 1992                      26.91
#> 1993                      33.13
#> 1994                      17.89
#> 1995                      12.96
#> 1996                       22.8
#> 1997                      27.54
#> 1998                      18.46
#> 1999                      13.86
#> 2000                       22.9
#> 2001                      35.25
#> 2002                      21.51
#> 2003                      15.27
#> 2004                      27.29
#> 2005                      32.78
#> 2006                      14.63
#> 2007                       9.75
#> 2008                      19.13
#> 2009                      36.02
#> 2010                      19.45
#> 2011                      13.71
#> 2012                      25.32
#> 2013                      40.18
#> 2014                      20.84
#> 2015                      17.37
#> 2016                      24.35
#> 2017                      30.61
#> 2018                      14.95
#> 2019                      10.66
#> 2020                      19.46
#> 2021                      30.92
#> 2022                      17.83
#> 2023                      11.94
#> 2024                      23.96
#> 2025                      32.76
#> 2026                      17.59
#> 2027                      11.95
#> 2028                      23.63
#> 2029                      27.79
#> 2030                      15.91
#> 2031                      10.18
#> 2032                      21.24
#> 2033                       31.1
#> 2034                      18.79
#> 2035                      14.62
#> 2036                      22.73
#> 2037                      33.13
#> 2038                      18.54
#> 2039                      13.02
#> 2040                      23.58
#> 2041                      43.28
#> 2042                      19.35
#> 2043                      16.83
#> 2044                      20.85
#> 2045                      41.74
#> 2046                      19.77
#> 2047                      15.48
#> 2048                      23.01
#> 2049                      43.35
#> 2050                      20.46
#> 2051                      15.69
#> 2052                      25.56
#> 2053                      42.18
#> 2054                      20.87
#> 2055                      16.22
#> 2056                      26.09
#> 2057                      36.79
#> 2058                      16.65
#> 2059                      12.15
#> 2060                      21.37
#> 2061                      35.49
#> 2062                      18.88
#> 2063                      13.48
#> 2064                      24.03
#> 2065                      35.05
#> 2066                      12.81
#> 2067                       10.1
#> 2068                      14.75
#> 2069                      29.15
#> 2070                       17.1
#> 2071                      12.52
#> 2072                      21.64
#> 2073                      31.75
#> 2074                      24.73
#> 2075                      19.71
#> 2076                      32.31
#> 2077                      42.96
#> 2078                      21.25
#> 2079                       16.2
#> 2080                       25.9
#> 2081                      37.56
#> 2082                      17.79
#> 2083                      13.03
#> 2084                      22.75
#> 2085                      33.79
#> 2086                      20.67
#> 2087                      13.81
#> 2088                      27.66
#> 2089                      31.81
#> 2090                      19.48
#> 2091                       14.2
#> 2092                      23.72
#> 2093                      34.16
#> 2094                      17.86
#> 2095                       13.5
#> 2096                      22.41
#> 2097                      30.11
#> 2098                      19.29
#> 2099                      14.34
#> 2100                       24.3
#> 2101                      34.63
#> 2102                      19.74
#> 2103                      15.27
#> 2104                      24.67
#> 2105                      29.81
#> 2106                      16.75
#> 2107                      11.39
#> 2108                      22.46
#> 2109                      27.86
#> 2110                      21.23
#> 2111                      14.65
#> 2112                      29.36
#> 2113                      23.79
#> 2114                      18.85
#> 2115                      14.04
#> 2116                      23.69
#> 2117                      27.95
#> 2118                      17.86
#> 2119                      12.75
#> 2120                      23.09
#> 2121                      29.94
#> 2122                      16.96
#> 2123                       11.4
#> 2124                      22.36
#> 2125                      36.48
#> 2126                      19.61
#> 2127                      12.98
#> 2128                      26.93
#> 2129                      37.79
#> 2130                      18.33
#> 2131                      13.84
#> 2132                      23.36
#> 2133                      28.84
#> 2134                      20.06
#> 2135                      14.96
#> 2136                      24.84
#> 2137                      32.96
#> 2138                      20.81
#> 2139                      15.69
#> 2140                       25.6
#> 2141                      37.87
#> 2142                      23.33
#> 2143                      17.39
#> 2144                      29.73
#> 2145                      39.78
#> 2146                       17.8
#> 2147                      13.56
#> 2148                      21.37
#> 2149                       32.7
#> 2150                      17.19
#> 2151                      13.67
#> 2152                      20.59
#> 2153                      33.45
#> 2154                      19.09
#> 2155                      15.13
#> 2156                      22.87
#> 2157                       35.6
#> 2158                      18.98
#> 2159                      13.79
#> 2160                      24.57
#> 2161                      38.15
#> 2162                      17.62
#> 2163                      13.06
#> 2164                      22.13
#> 2165                      34.51
#> 2166                       20.6
#> 2167                      16.23
#> 2168                      24.46
#> 2169                      39.43
#> 2170                      19.82
#> 2171                      16.47
#> 2172                      22.02
#> 2173                      50.73
#> 2174                      15.06
#> 2175                       9.48
#> 2176                      19.26
#> 2177                      21.08
#> 2178                      17.88
#> 2179                      24.55
#> 2180                      32.87
#> 2181                      18.83
#> 2182                      13.82
#> 2183                       23.9
#> 2184                      32.98
#> 2185                      16.67
#> 2186                      11.83
#> 2187                      21.18
#> 2188                      34.19
#> 2189                      16.14
#> 2190                      11.81
#> 2191                      20.87
#> 2192                      27.86
#> 2193                      15.85
#> 2194                      10.72
#> 2195                       21.3
#> 2196                       28.4
#> 2197                      18.03
#> 2198                      12.62
#> 2199                      22.95
#> 2200                      35.37
#> 2201                      16.53
#> 2202                      12.09
#> 2203                      21.29
#> 2204                       29.8
#> 2205                      18.73
#> 2206                      14.36
#> 2207                      22.72
#> 2208                      36.18
#> 2209                      15.94
#> 2210                      10.84
#> 2211                      21.13
#> 2212                      34.24
#> 2213                      16.94
#> 2214                      12.99
#> 2215                      20.59
#> 2216                       28.1
#> 2217                       20.2
#> 2218                      14.66
#> 2219                      25.98
#> 2220                      37.36
#> 2221                       17.6
#> 2222                      11.61
#> 2223                      23.68
#> 2224                      37.88
#> 2225                      20.76
#> 2226                      17.22
#> 2227                      23.17
#> 2228                      45.97
#> 2229                      20.54
#> 2230                      16.55
#> 2231                      24.81
#> 2232                      32.92
#> 2233                      18.77
#> 2234                       14.1
#> 2235                       23.8
#> 2236                      29.81
#> 2237                      20.09
#> 2238                      16.25
#> 2239                      24.02
#> 2240                      37.47
#> 2241                      18.25
#> 2242                      12.94
#> 2243                      22.61
#> 2244                      40.39
#> 2245                      21.09
#> 2246                      15.69
#> 2247                      26.41
#> 2248                      35.56
#> 2249                      18.99
#> 2250                      16.35
#> 2251                      21.35
#> 2252                      31.14
#> 2253                      15.65
#> 2254                      11.03
#> 2255                      19.94
#> 2256                      28.02
#> 2257                      17.46
#> 2258                      12.87
#> 2259                      22.15
#> 2260                      33.22
#> 2261                      17.23
#> 2262                      12.08
#> 2263                      21.39
#> 2264                      32.19
#> 2265                      17.23
#> 2266                      13.14
#> 2267                      21.28
#> 2268                      32.45
#> 2269                      18.17
#> 2270                      13.68
#> 2271                      22.32
#> 2272                       32.7
#> 2273                      18.66
#> 2274                      15.13
#> 2275                      21.91
#> 2276                      39.02
#> 2277                      17.48
#> 2278                      14.78
#> 2279                      19.48
#> 2280                      33.17
#> 2281                      16.47
#> 2282                      13.55
#> 2283                      19.97
#> 2284                      26.88
#> 2285                      17.64
#> 2286                      12.46
#> 2287                      23.02
#> 2288                      27.47
#> 2289                      16.14
#> 2290                      11.97
#> 2291                      19.28
#> 2292                      32.87
#> 2293                       16.3
#> 2294                       12.7
#> 2295                      19.89
#> 2296                      33.71
#> 2297                      17.71
#> 2298                      13.69
#> 2299                      21.96
#> 2300                      32.29
#> 2301                      15.81
#> 2302                      12.17
#> 2303                      19.08
#> 2304                      33.29
#> 2305                      18.13
#> 2306                      13.32
#> 2307                      23.08
#> 2308                      29.95
#> 2309                      18.18
#> 2310                      12.85
#> 2311                      23.85
#> 2312                      31.95
#> 2313                      17.66
#> 2314                      15.11
#> 2315                       19.8
#> 2316                      37.19
#> 2317                          c
#> 2318                          c
#> 2319                      18.49
#> 2320                      16.73
#> 2321                      19.41
#> 2322                      49.09
#> 2323                      14.42
#> 2324                      11.46
#> 2325                      16.67
#> 2326                      39.35
#> 2327                      15.77
#> 2328                      12.47
#> 2329                      18.45
#> 2330                       34.8
#> 2331                      17.34
#> 2332                      15.03
#> 2333                      19.58
#> 2334                      29.91
#> 2335                      14.84
#> 2336                      11.61
#> 2337                      17.88
#> 2338                      38.45
#> 2339                      22.78
#> 2340                       17.2
#> 2341                      28.15
#> 2342                       43.1
#> 2343                      19.49
#> 2344                      15.87
#> 2345                       23.7
#> 2346                      35.68
#> 2347                       17.6
#> 2348                      14.85
#> 2349                      19.97
#> 2350                      32.71
#> 2351                      18.64
#> 2352                      15.59
#> 2353                      21.16
#> 2354                      38.27
#> 2355                      17.39
#> 2356                      14.49
#> 2357                      20.23
#> 2358                      36.51
#> 2359                      19.05
#> 2360                      16.13
#> 2361                      21.93
#> 2362                      30.91
#> 2363                      16.89
#> 2364                      14.54
#> 2365                      17.55
#> 2366                      38.79
#> 2367                      18.66
#> 2368                      15.72
#> 2369                      21.37
#> 2370                      35.33
#> 2371                         16
#> 2372                      12.76
#> 2373                      19.62
#> 2374                      36.65
#> 2375                      16.33
#> 2376                      14.01
#> 2377                      18.92
#> 2378                      37.97
#> 2379                      20.34
#> 2380                      17.78
#> 2381                      22.49
#> 2382                      34.74
#> 2383                      18.08
#> 2384                      16.09
#> 2385                      19.45
#> 2386                       32.6
#> 2387                      21.15
#> 2388                      18.69
#> 2389                      23.41
#> 2390                      37.74
#> 2391                      19.61
#> 2392                      16.71
#> 2393                      22.15
#> 2394                      30.52
#> 2395                      13.54
#> 2396                      11.73
#> 2397                      14.31
#> 2398                      34.78
#> 2399                      19.66
#> 2400                      17.04
#> 2401                      22.04
#> 2402                      32.54
#> 2403                      16.75
#> 2404                       14.5
#> 2405                      19.02
#> 2406                      32.61
#> 2407                      15.13
#> 2408                      12.58
#> 2409                      17.28
#> 2410                      37.92
#> 2411                      21.24
#> 2412                       20.4
#> 2413                      21.78
#> 2414                      53.07
#> 2415                      18.24
#> 2416                      17.09
#> 2417                      18.77
#> 2418                       39.2
#> 2419                      12.46
#> 2420                       9.05
#> 2421                      16.27
#> 2422                      27.49
#> 2423                      17.55
#> 2424                      14.85
#> 2425                      19.63
#> 2426                      39.85
#> 2427                      14.35
#> 2428                      12.44
#> 2429                       15.2
#> 2430                      39.19
#> 2431                      19.18
#> 2432                      18.74
#> 2433                      18.63
#> 2434                      42.57
#> 2435                      18.63
#> 2436                      14.62
#> 2437                      22.53
#> 2438                      45.43
#> 2439                      17.37
#> 2440                       14.5
#> 2441                      19.57
#> 2442                      45.61
#> 2443                      20.24
#> 2444                      18.43
#> 2445                      20.94
#> 2446                      35.02
#> 2447                      17.42
#> 2448                      13.02
#> 2449                      21.59
#> 2450                      35.89
#> 2451                      18.43
#> 2452                      15.54
#> 2453                       20.9
#> 2454                      34.03
#> 2455                      14.98
#> 2456                      10.65
#> 2457                      19.43
#> 2458                      31.61
#> 2459                      16.61
#> 2460                      11.37
#> 2461                      21.68
#> 2462                      33.19
#> 2463                      18.57
#> 2464                       15.6
#> 2465                      21.55
#> 2466                      43.72
#> 2467                      19.16
#> 2468                      17.62
#> 2469                      20.33
#> 2470                      37.08
#> 2471                      17.17
#> 2472                      11.86
#> 2473                      20.87
#> 2474                       35.1
#> 2475                      13.17
#> 2476                       9.32
#> 2477                         17
#> 2478                         26
#> 2479                      16.26
#> 2480                      11.74
#> 2481                      20.35
#> 2482                      35.31
#> 2483                      19.94
#> 2484                      14.53
#> 2485                      26.74
#> 2486                      34.63
#> 2487                       19.2
#> 2488                      13.04
#> 2489                      24.15
#> 2490                      52.16
#> 2491                      21.24
#> 2492                       16.3
#> 2493                       26.4
#> 2494                      33.81
#> 2495                      23.27
#> 2496                      17.47
#> 2497                      28.31
#> 2498                      42.22
#> 2499                      16.47
#> 2500                      12.78
#> 2501                      19.57
#> 2502                      36.29
#> 2503                      20.06
#> 2504                      15.33
#> 2505                      24.14
#> 2506                       38.1
#> 2507                      15.68
#> 2508                      10.42
#> 2509                      21.26
#> 2510                      32.49
#> 2511                       19.3
#> 2512                       15.1
#> 2513                      22.85
#> 2514                      40.04
#> 2515                      17.14
#> 2516                      12.16
#> 2517                      22.53
#> 2518                      30.89
#> 2519                      14.63
#> 2520                      11.08
#> 2521                      18.04
#> 2522                      30.87
#> 2523                      17.43
#> 2524                       12.8
#> 2525                      22.01
#> 2526                      35.13
#> 2527                      18.37
#> 2528                      12.69
#> 2529                      23.99
#> 2530                      35.18
#> 2531                      16.28
#> 2532                      10.14
#> 2533                      21.41
#> 2534                      38.03
#> 2535                      22.07
#> 2536                      16.04
#> 2537                      28.86
#> 2538                      41.09
#> 2539                      18.11
#> 2540                       12.3
#> 2541                      23.95
#> 2542                      33.06
#> 2543                      16.91
#> 2544                      11.52
#> 2545                      23.37
#> 2546                      31.54
#> 2547                      20.04
#> 2548                      13.29
#> 2549                       26.4
#> 2550                      36.62
#> 2551                      19.88
#> 2552                      14.56
#> 2553                      23.35
#> 2554                      43.68
#> 2555                      17.04
#> 2556                       11.5
#> 2557                      22.48
#> 2558                      32.92
#> 2559                      19.75
#> 2560                      13.97
#> 2561                      26.05
#> 2562                      32.02
#> 2563                          c
#> 2564                          c
#> 2565                      15.99
#> 2566                      10.55
#> 2567                      21.85
#> 2568                      29.46
#> 2569                      16.58
#> 2570                      11.55
#> 2571                      20.74
#> 2572                       35.2
#> 2573                      19.08
#> 2574                      13.01
#> 2575                      23.51
#> 2576                      29.82
#> 2577                      19.22
#> 2578                      13.62
#> 2579                      24.46
#> 2580                      41.04
#> 2581                      18.83
#> 2582                      12.56
#> 2583                      25.65
#> 2584                      34.85
#> 2585                      16.99
#> 2586                      12.14
#> 2587                      21.76
#> 2588                      33.38
#> 2589                      18.19
#> 2590                      13.86
#> 2591                      22.36
#> 2592                      35.27
#> 2593                      19.61
#> 2594                      14.44
#> 2595                      24.42
#> 2596                      33.71
#> 2597                      19.56
#> 2598                      14.37
#> 2599                      24.88
#> 2600                       31.8
#> 2601                      21.34
#> 2602                       15.3
#> 2603                      28.55
#> 2604                      29.66
#> 2605                      20.47
#> 2606                      13.75
#> 2607                      26.69
#> 2608                      35.27
#> 2609                      18.69
#> 2610                      13.62
#> 2611                       24.1
#> 2612                      30.91
#> 2613                      20.11
#> 2614                       16.3
#> 2615                      23.91
#> 2616                      25.41
#> 2617                      19.32
#> 2618                      14.81
#> 2619                      23.72
#> 2620                      34.22
#> 2621                       19.2
#> 2622                      13.98
#> 2623                      22.37
#> 2624                      40.63
#> 2625                      20.45
#> 2626                      15.52
#> 2627                      24.73
#> 2628                      39.47
#> 2629                      17.51
#> 2630                      12.83
#> 2631                      20.98
#> 2632                      32.06
#> 2633                      21.14
#> 2634                      15.36
#> 2635                      26.94
#> 2636                      30.21
#> 2637                      20.54
#> 2638                      14.44
#> 2639                      26.91
#> 2640                      33.13
#> 2641                      17.91
#> 2642                      12.97
#> 2643                      22.84
#> 2644                      27.54
#> 2645                      18.48
#> 2646                      13.91
#> 2647                      22.92
#> 2648                      35.32
#> 2649                      21.62
#> 2650                      15.38
#> 2651                      27.41
#> 2652                      32.78
#> 2653                      14.63
#> 2654                       9.87
#> 2655                      19.14
#> 2656                      35.81
#> 2657                      19.36
#> 2658                      13.53
#> 2659                       25.4
#> 2660                      40.73
#> 2661                      20.96
#> 2662                      17.43
#> 2663                      24.61
#> 2664                      29.77
#> 2665                      15.07
#> 2666                      10.78
#> 2667                      19.59
#> 2668                      31.35
#> 2669                      17.77
#> 2670                      11.91
#> 2671                      23.91
#> 2672                       32.4
#> 2673                      17.76
#> 2674                      12.12
#> 2675                       23.8
#> 2676                      28.21
#> 2677                      15.97
#> 2678                      10.12
#> 2679                      21.37
#> 2680                      33.33
#> 2681                       18.8
#> 2682                      14.62
#> 2683                      22.75
#> 2684                      33.13
#> 2685                      18.41
#> 2686                      12.93
#> 2687                      23.58
#> 2688                      43.28
#> 2689                      19.36
#> 2690                      16.83
#> 2691                      20.88
#> 2692                      41.84
#> 2693                      19.77
#> 2694                      15.51
#> 2695                      23.03
#> 2696                      43.27
#> 2697                      20.49
#> 2698                      15.73
#> 2699                      25.56
#> 2700                      42.34
#> 2701                      20.87
#> 2702                      16.25
#> 2703                      26.03
#> 2704                       36.7
#> 2705                       16.7
#> 2706                      12.26
#> 2707                      21.34
#> 2708                      36.52
#> 2709                      18.78
#> 2710                      13.68
#> 2711                      23.87
#> 2712                      33.22
#> 2713                      12.76
#> 2714                       9.98
#> 2715                      14.77
#> 2716                      29.04
#> 2717                      17.09
#> 2718                      12.52
#> 2719                      21.63
#> 2720                      31.75
#> 2721                      25.01
#> 2722                      19.97
#> 2723                      32.57
#> 2724                       43.7
#> 2725                      21.29
#> 2726                       16.4
#> 2727                      25.83
#> 2728                      37.56
#> 2729                      17.89
#> 2730                      13.21
#> 2731                       22.7
#> 2732                      34.86
#> 2733                      20.78
#> 2734                      13.93
#> 2735                      27.77
#> 2736                      31.52
#> 2737                       19.6
#> 2738                      14.33
#> 2739                      23.83
#> 2740                       34.7
#> 2741                      17.88
#> 2742                      13.54
#> 2743                      22.42
#> 2744                      30.18
#> 2745                      19.34
#> 2746                      14.42
#> 2747                      24.35
#> 2748                      34.81
#> 2749                      19.88
#> 2750                      15.46
#> 2751                      24.69
#> 2752                      30.62
#> 2753                      16.84
#> 2754                      11.56
#> 2755                      22.47
#> 2756                      27.94
#> 2757                      21.32
#> 2758                      14.71
#> 2759                      29.47
#> 2760                      23.79
#> 2761                      18.87
#> 2762                      14.04
#> 2763                      23.73
#> 2764                      27.95
#> 2765                      17.82
#> 2766                      12.67
#> 2767                      23.12
#> 2768                      29.01
#> 2769                      17.05
#> 2770                      11.56
#> 2771                      22.39
#> 2772                      36.63
#> 2773                      19.71
#> 2774                      13.17
#> 2775                      26.96
#> 2776                      38.71
#> 2777                      18.52
#> 2778                      14.01
#> 2779                      23.54
#> 2780                      29.43
#> 2781                      20.18
#> 2782                      15.07
#> 2783                      24.89
#> 2784                      33.82
#> 2785                       20.9
#> 2786                      15.76
#> 2787                      25.85
#> 2788                      37.39
#> 2789                      23.34
#> 2790                      17.32
#> 2791                      29.83
#> 2792                      39.99
#> 2793                      17.81
#> 2794                      13.62
#> 2795                      21.31
#> 2796                      33.14
#> 2797                      17.12
#> 2798                      13.66
#> 2799                      20.48
#> 2800                      34.14
#> 2801                      19.08
#> 2802                      15.12
#> 2803                      22.89
#> 2804                      35.56
#> 2805                      19.12
#> 2806                         14
#> 2807                      24.71
#> 2808                      38.33
#> 2809                      17.75
#> 2810                      13.21
#> 2811                      22.23
#> 2812                      34.82
#> 2813                      20.79
#> 2814                      16.35
#> 2815                       24.7
#> 2816                      40.17
#> 2817                      19.87
#> 2818                      16.56
#> 2819                      22.04
#> 2820                      50.66
#> 2821                      14.87
#> 2822                       9.48
#> 2823                      18.93
#> 2824                      21.41
#> 2825                      18.25
#> 2826                      24.85
#> 2827                      32.52
#> 2828                      18.89
#> 2829                       13.9
#> 2830                       23.9
#> 2831                      33.79
#> 2832                      16.79
#> 2833                      11.96
#> 2834                      21.27
#> 2835                      34.61
#> 2836                      16.21
#> 2837                      11.97
#> 2838                      20.87
#> 2839                      28.06
#> 2840                      15.96
#> 2841                      10.81
#> 2842                      21.42
#> 2843                      29.05
#> 2844                      18.04
#> 2845                      12.61
#> 2846                      22.99
#> 2847                      35.42
#> 2848                      16.81
#> 2849                      12.45
#> 2850                       21.5
#> 2851                      30.04
#> 2852                       18.8
#> 2853                      14.45
#> 2854                       22.8
#> 2855                      36.28
#> 2856                      16.06
#> 2857                      10.94
#> 2858                      21.33
#> 2859                      33.33
#> 2860                      17.07
#> 2861                      13.28
#> 2862                      20.67
#> 2863                      28.23
#> 2864                      20.39
#> 2865                      14.94
#> 2866                      26.15
#> 2867                      37.72
#> 2868                      17.84
#> 2869                      11.87
#> 2870                      23.86
#> 2871                       38.3
#> 2872                      20.72
#> 2873                      17.17
#> 2874                      23.17
#> 2875                         46
#> 2876                      20.44
#> 2877                      16.55
#> 2878                      24.61
#> 2879                      32.72
#> 2880                      18.85
#> 2881                      14.21
#> 2882                      23.85
#> 2883                      29.81
#> 2884                       20.2
#> 2885                      16.31
#> 2886                       24.2
#> 2887                      37.55
#> 2888                      18.46
#> 2889                      13.13
#> 2890                      22.81
#> 2891                      41.15
#> 2892                      21.29
#> 2893                      15.84
#> 2894                      26.69
#> 2895                       35.8
#> 2896                      19.01
#> 2897                      16.34
#> 2898                       21.4
#> 2899                      32.16
#> 2900                      15.79
#> 2901                      11.13
#> 2902                       20.1
#> 2903                      28.15
#> 2904                      17.45
#> 2905                      12.87
#> 2906                      22.12
#> 2907                      33.13
#> 2908                      17.33
#> 2909                      12.24
#> 2910                      21.48
#> 2911                       32.1
#> 2912                      17.36
#> 2913                      13.28
#> 2914                      21.39
#> 2915                      32.53
#> 2916                      18.21
#> 2917                      13.74
#> 2918                      22.32
#> 2919                      32.99
#> 2920                      18.44
#> 2921                      14.96
#> 2922                      21.76
#> 2923                      38.83
#> 2924                      17.61
#> 2925                      14.98
#> 2926                      19.56
#> 2927                      33.06
#> 2928                      16.83
#> 2929                      13.87
#> 2930                      20.37
#> 2931                      27.83
#> 2932                      17.78
#> 2933                      12.77
#> 2934                      23.02
#> 2935                      27.88
#> 2936                      16.41
#> 2937                      12.02
#> 2938                      19.65
#> 2939                      33.76
#> 2940                      16.35
#> 2941                      12.75
#> 2942                      19.95
#> 2943                      33.37
#> 2944                      17.82
#> 2945                      13.81
#> 2946                      22.06
#> 2947                      32.28
#> 2948                      15.93
#> 2949                      12.29
#> 2950                      19.21
#> 2951                      32.96
#> 2952                      18.33
#> 2953                      13.61
#> 2954                      23.17
#> 2955                      30.15
#> 2956                       18.4
#> 2957                      13.08
#> 2958                      24.02
#> 2959                       32.6
#> 2960                      17.72
#> 2961                      15.14
#> 2962                      19.91
#> 2963                      37.28
#> 2964                          c
#> 2965                          c
#> 2966                      18.59
#> 2967                      16.82
#> 2968                      19.53
#> 2969                      49.26
#> 2970                      14.51
#> 2971                      11.56
#> 2972                      16.75
#> 2973                      38.87
#> 2974                      15.86
#> 2975                      12.52
#> 2976                      18.57
#> 2977                      34.91
#> 2978                      17.48
#> 2979                       15.1
#> 2980                      19.76
#> 2981                      30.27
#> 2982                      15.09
#> 2983                      11.91
#> 2984                      18.04
#> 2985                      39.45
#> 2986                      22.87
#> 2987                       17.3
#> 2988                      28.24
#> 2989                      43.45
#> 2990                      19.57
#> 2991                      16.03
#> 2992                      23.67
#> 2993                      35.67
#> 2994                      17.33
#> 2995                      14.48
#> 2996                      20.15
#> 2997                         33
#> 2998                      18.78
#> 2999                      15.68
#> 3000                      21.38
#> 3001                      38.14
#> 3002                      17.47
#> 3003                      14.44
#> 3004                      20.44
#> 3005                      37.43
#> 3006                      19.21
#> 3007                      16.21
#> 3008                      22.19
#> 3009                      30.82
#> 3010                      16.82
#> 3011                      14.49
#> 3012                      17.41
#> 3013                      39.03
#> 3014                      18.78
#> 3015                      15.78
#> 3016                      21.61
#> 3017                      34.92
#> 3018                      16.13
#> 3019                      12.85
#> 3020                      19.79
#> 3021                      37.33
#> 3022                      16.34
#> 3023                      13.94
#> 3024                      19.04
#> 3025                       38.3
#> 3026                       20.2
#> 3027                      17.65
#> 3028                       22.5
#> 3029                      34.21
#> 3030                      18.03
#> 3031                      16.02
#> 3032                       19.4
#> 3033                      32.91
#> 3034                      21.04
#> 3035                      18.51
#> 3036                      23.41
#> 3037                      37.57
#> 3038                       19.6
#> 3039                      16.77
#> 3040                      22.08
#> 3041                      30.52
#> 3042                      13.68
#> 3043                      11.75
#> 3044                      14.58
#> 3045                      34.78
#> 3046                       19.7
#> 3047                       17.1
#> 3048                      22.05
#> 3049                       32.7
#> 3050                      16.69
#> 3051                      14.47
#> 3052                      18.94
#> 3053                      32.32
#> 3054                      15.23
#> 3055                      12.67
#> 3056                      17.34
#> 3057                      38.88
#> 3058                       21.3
#> 3059                      20.46
#> 3060                      21.86
#> 3061                      52.36
#> 3062                      18.33
#> 3063                      17.09
#> 3064                      18.99
#> 3065                      38.19
#> 3066                      12.49
#> 3067                       9.02
#> 3068                      16.37
#> 3069                      27.49
#> 3070                      17.74
#> 3071                         15
#> 3072                      19.84
#> 3073                       40.4
#> 3074                      14.45
#> 3075                      12.54
#> 3076                      15.28
#> 3077                      39.55
#> 3078                      19.25
#> 3079                      18.81
#> 3080                       18.7
#> 3081                      42.63
#> 3082                      18.65
#> 3083                      14.66
#> 3084                      22.51
#> 3085                      45.95
#> 3086                      17.46
#> 3087                      14.62
#> 3088                      19.62
#> 3089                      45.45
#> 3090                      20.33
#> 3091                      18.57
#> 3092                      21.07
#> 3093                      33.94
#> 3094                      17.51
#> 3095                      13.11
#> 3096                      21.69
#> 3097                      35.71
#> 3098                      18.46
#> 3099                      15.54
#> 3100                      20.94
#> 3101                      34.03
#> 3102                      15.16
#> 3103                      10.89
#> 3104                      19.52
#> 3105                      32.76
#> 3106                      16.85
#> 3107                      11.57
#> 3108                      21.57
#> 3109                      32.39
#> 3110                      18.38
#> 3111                      15.44
#> 3112                      21.32
#> 3113                      42.93
#> 3114                      19.25
#> 3115                      17.73
#> 3116                      20.41
#> 3117                       36.9
#> 3118                      17.13
#> 3119                      11.77
#> 3120                      20.95
#> 3121                      30.13
#> 3122                       13.2
#> 3123                       9.32
#> 3124                      17.09
#> 3125                      25.59
#> 3126                      16.46
#> 3127                      12.03
#> 3128                      20.43
#> 3129                      35.87
#> 3130                      19.97
#> 3131                      14.54
#> 3132                      26.81
#> 3133                       34.2
#> 3134                      19.28
#> 3135                      13.27
#> 3136                      24.11
#> 3137                      51.38
#> 3138                      21.34
#> 3139                      16.42
#> 3140                       26.5
#> 3141                      33.33
#> 3142                      23.48
#> 3143                      17.81
#> 3144                      28.44
#> 3145                       41.4
#> 3146                      16.54
#> 3147                      12.82
#> 3148                      19.75
#> 3149                         36
#> 3150                      20.44
#> 3151                      15.54
#> 3152                      24.51
#> 3153                      38.72
#> 3154                      15.75
#> 3155                      10.49
#> 3156                      21.32
#> 3157                      32.42
#> 3158                      19.29
#> 3159                       15.1
#> 3160                      22.85
#> 3161                      40.04
#> 3162                      17.24
#> 3163                      12.28
#> 3164                       22.6
#> 3165                      30.02
#> 3166                      14.82
#> 3167                      11.21
#> 3168                       18.3
#> 3169                       31.3
#> 3170                      17.53
#> 3171                      12.93
#> 3172                      22.08
#> 3173                      35.02
#> 3174                      18.44
#> 3175                      12.74
#> 3176                      24.07
#> 3177                      35.17
#> 3178                      16.29
#> 3179                      10.14
#> 3180                      21.44
#> 3181                      38.03
#> 3182                      22.07
#> 3183                      16.04
#> 3184                      28.87
#> 3185                      41.09
#> 3186                      18.13
#> 3187                      12.29
#> 3188                         24
#> 3189                      33.06
#> 3190                       16.9
#> 3191                      11.52
#> 3192                      23.36
#> 3193                      31.54
#> 3194                      20.04
#> 3195                      13.29
#> 3196                       26.4
#> 3197                      36.62
#> 3198                      19.89
#> 3199                      14.56
#> 3200                      23.36
#> 3201                      43.68
#> 3202                      17.05
#> 3203                      11.55
#> 3204                      22.54
#> 3205                      33.52
#> 3206                      19.77
#> 3207                      13.98
#> 3208                      26.09
#> 3209                      32.02
#> 3210                          c
#> 3211                          c
#> 3212                       16.1
#> 3213                      10.76
#> 3214                      21.85
#> 3215                       29.2
#> 3216                      16.59
#> 3217                       11.7
#> 3218                       20.6
#> 3219                      35.28
#> 3220                       19.2
#> 3221                      13.07
#> 3222                      23.68
#> 3223                      29.61
#> 3224                      19.22
#> 3225                      13.62
#> 3226                      24.48
#> 3227                      41.04
#> 3228                      19.03
#> 3229                      12.56
#> 3230                      25.92
#> 3231                      34.85
#> 3232                      17.15
#> 3233                      12.24
#> 3234                      21.99
#> 3235                      33.12
#> 3236                      18.26
#> 3237                      14.04
#> 3238                       22.3
#> 3239                      35.32
#> 3240                      19.91
#> 3241                       14.9
#> 3242                      24.53
#> 3243                      34.16
#> 3244                      19.62
#> 3245                      14.41
#> 3246                      24.89
#> 3247                      33.57
#> 3248                      21.77
#> 3249                      15.94
#> 3250                      28.68
#> 3251                      30.89
#> 3252                      20.82
#> 3253                      14.34
#> 3254                      26.81
#> 3255                      35.48
#> 3256                      19.06
#> 3257                      14.17
#> 3258                      24.27
#> 3259                      31.01
#> 3260                      20.24
#> 3261                      16.64
#> 3262                      23.78
#> 3263                      25.87
#> 3264                      19.51
#> 3265                      15.13
#> 3266                      23.77
#> 3267                      34.05
#> 3268                      19.73
#> 3269                      14.76
#> 3270                      22.64
#> 3271                      41.37
#> 3272                      20.73
#> 3273                      15.94
#> 3274                      24.84
#> 3275                         40
#> 3276                      17.78
#> 3277                      13.18
#> 3278                      21.11
#> 3279                      33.26
#> 3280                      21.65
#> 3281                      15.91
#> 3282                      27.44
#> 3283                      30.11
#> 3284                       20.7
#> 3285                      14.79
#> 3286                      26.88
#> 3287                      32.43
#> 3288                      18.21
#> 3289                      13.51
#> 3290                      22.79
#> 3291                      28.98
#> 3292                      18.59
#> 3293                      14.13
#> 3294                      22.89
#> 3295                      35.49
#> 3296                      21.75
#> 3297                      15.57
#> 3298                      27.41
#> 3299                      33.81
#> 3300                       14.9
#> 3301                      10.41
#> 3302                      19.11
#> 3303                       36.6
#> 3304                      19.38
#> 3305                      13.63
#> 3306                      25.34
#> 3307                      40.05
#> 3308                      20.71
#> 3309                      17.44
#> 3310                      24.06
#> 3311                      29.65
#> 3312                       15.1
#> 3313                      10.87
#> 3314                      19.56
#> 3315                      30.78
#> 3316                      17.82
#> 3317                      12.15
#> 3318                      23.78
#> 3319                      32.07
#> 3320                      17.98
#> 3321                      12.37
#> 3322                      23.97
#> 3323                      28.84
#> 3324                      16.11
#> 3325                       10.3
#> 3326                      21.51
#> 3327                      31.76
#> 3328                      19.19
#> 3329                      15.09
#> 3330                      23.01
#> 3331                      34.19
#> 3332                      18.49
#> 3333                      13.03
#> 3334                      23.67
#> 3335                      42.88
#> 3336                      19.43
#> 3337                      16.89
#> 3338                      20.97
#> 3339                      41.67
#> 3340                      19.75
#> 3341                       15.6
#> 3342                      22.89
#> 3343                      42.96
#> 3344                      20.41
#> 3345                      15.87
#> 3346                      25.16
#> 3347                      43.44
#> 3348                      20.94
#> 3349                      16.56
#> 3350                      25.82
#> 3351                      36.35
#> 3352                      16.95
#> 3353                      12.63
#> 3354                      21.46
#> 3355                      36.24
#> 3356                      19.04
#> 3357                      14.12
#> 3358                      23.85
#> 3359                      34.79
#> 3360                      12.81
#> 3361                      10.16
#> 3362                      14.69
#> 3363                      29.07
#> 3364                      17.49
#> 3365                      13.07
#> 3366                      21.82
#> 3367                      32.94
#> 3368                      25.33
#> 3369                      20.26
#> 3370                      33.06
#> 3371                      43.14
#> 3372                      21.28
#> 3373                      16.48
#> 3374                      25.68
#> 3375                      37.97
#> 3376                      17.96
#> 3377                      13.31
#> 3378                       22.7
#> 3379                      36.01
#> 3380                      20.92
#> 3381                      14.19
#> 3382                      27.71
#> 3383                      32.89
#> 3384                      19.69
#> 3385                      14.58
#> 3386                      23.77
#> 3387                      34.53
#> 3388                      17.93
#> 3389                      13.74
#> 3390                       22.3
#> 3391                      30.18
#> 3392                      19.47
#> 3393                      14.66
#> 3394                      24.34
#> 3395                      34.98
#> 3396                      19.94
#> 3397                      15.54
#> 3398                      24.75
#> 3399                      30.79
#> 3400                      16.99
#> 3401                      11.75
#> 3402                      22.57
#> 3403                      28.24
#> 3404                      21.46
#> 3405                      14.74
#> 3406                      29.76
#> 3407                      24.12
#> 3408                      18.98
#> 3409                      14.21
#> 3410                      23.75
#> 3411                      28.82
#> 3412                      17.92
#> 3413                      12.89
#> 3414                      23.02
#> 3415                      31.48
#> 3416                      17.16
#> 3417                      11.77
#> 3418                      22.39
#> 3419                      36.48
#> 3420                      19.94
#> 3421                       13.5
#> 3422                      27.09
#> 3423                      38.71
#> 3424                      18.51
#> 3425                      14.14
#> 3426                      23.34
#> 3427                      30.14
#> 3428                      20.31
#> 3429                      15.37
#> 3430                      24.85
#> 3431                      34.08
#> 3432                      20.91
#> 3433                      16.03
#> 3434                      25.54
#> 3435                      37.78
#> 3436                      23.43
#> 3437                      17.52
#> 3438                       29.8
#> 3439                      39.99
#> 3440                      17.88
#> 3441                      13.85
#> 3442                      21.21
#> 3443                      33.33
#> 3444                      17.29
#> 3445                      13.91
#> 3446                      20.58
#> 3447                      33.17
#> 3448                      19.27
#> 3449                      15.45
#> 3450                      22.93
#> 3451                      35.37
#> 3452                      19.37
#> 3453                      14.37
#> 3454                       24.8
#> 3455                      39.02
#> 3456                      17.79
#> 3457                      13.34
#> 3458                      22.16
#> 3459                      34.88
#> 3460                      20.75
#> 3461                      16.44
#> 3462                      24.55
#> 3463                      39.47
#> 3464                      19.95
#> 3465                      16.72
#> 3466                      22.07
#> 3467                      50.22
#> 3468                      15.09
#> 3469                       9.71
#> 3470                      19.13
#> 3471                      21.21
#> 3472                      18.07
#> 3473                      24.65
#> 3474                       31.6
#> 3475                      18.94
#> 3476                      14.09
#> 3477                      23.78
#> 3478                       33.9
#> 3479                      16.72
#> 3480                      12.04
#> 3481                      21.05
#> 3482                      34.53
#> 3483                      16.39
#> 3484                      12.27
#> 3485                       20.9
#> 3486                      28.92
#> 3487                      16.12
#> 3488                      10.96
#> 3489                      21.59
#> 3490                      29.32
#> 3491                      18.14
#> 3492                      12.86
#> 3493                      22.91
#> 3494                      35.73
#> 3495                      16.71
#> 3496                      12.44
#> 3497                       21.3
#> 3498                       30.3
#> 3499                      18.82
#> 3500                      14.62
#> 3501                      22.65
#> 3502                      36.26
#> 3503                      15.92
#> 3504                      10.91
#> 3505                      21.03
#> 3506                      33.61
#> 3507                       17.3
#> 3508                      13.76
#> 3509                      20.63
#> 3510                      28.48
#> 3511                      20.27
#> 3512                      15.01
#> 3513                      25.79
#> 3514                      37.41
#> 3515                      17.98
#> 3516                      12.16
#> 3517                      23.85
#> 3518                      37.66
#> 3519                      20.67
#> 3520                      17.26
#> 3521                         23
#> 3522                      45.71
#> 3523                      20.52
#> 3524                      16.79
#> 3525                      24.46
#> 3526                      33.31
#> 3527                      18.76
#> 3528                      14.27
#> 3529                      23.55
#> 3530                      30.02
#> 3531                      20.32
#> 3532                      16.77
#> 3533                      23.93
#> 3534                      36.83
#> 3535                      18.41
#> 3536                      13.27
#> 3537                      22.57
#> 3538                      41.02
#> 3539                      21.11
#> 3540                      15.83
#> 3541                      26.31
#> 3542                      35.99
#> 3543                      19.05
#> 3544                      16.38
#> 3545                      21.43
#> 3546                      32.49
#> 3547                      15.89
#> 3548                      11.42
#> 3549                      20.02
#> 3550                      28.28
#> 3551                      17.48
#> 3552                      13.02
#> 3553                      22.02
#> 3554                      33.07
#> 3555                      17.41
#> 3556                      12.39
#> 3557                      21.46
#> 3558                      32.49
#> 3559                      17.39
#> 3560                      13.44
#> 3561                      21.27
#> 3562                      32.53
#> 3563                      18.27
#> 3564                       13.9
#> 3565                      22.27
#> 3566                      32.99
#> 3567                      18.74
#> 3568                      15.45
#> 3569                      21.83
#> 3570                      38.72
#> 3571                      17.56
#> 3572                      15.04
#> 3573                      19.43
#> 3574                      32.13
#> 3575                      16.74
#> 3576                      13.91
#> 3577                      20.11
#> 3578                      27.61
#> 3579                      17.82
#> 3580                      13.06
#> 3581                      22.79
#> 3582                      27.29
#> 3583                      16.34
#> 3584                      12.13
#> 3585                      19.41
#> 3586                      34.14
#> 3587                      16.37
#> 3588                      12.88
#> 3589                      19.85
#> 3590                      33.31
#> 3591                      17.86
#> 3592                      13.96
#> 3593                      21.96
#> 3594                      32.39
#> 3595                      15.98
#> 3596                      12.47
#> 3597                      19.12
#> 3598                       33.1
#> 3599                      18.31
#> 3600                      13.71
#> 3601                      22.99
#> 3602                      30.32
#> 3603                      18.41
#> 3604                      13.23
#> 3605                      23.87
#> 3606                      32.44
#> 3607                      17.78
#> 3608                      15.29
#> 3609                      19.86
#> 3610                      37.38
#> 3611                          c
#> 3612                          c
#> 3613                      18.73
#> 3614                      17.09
#> 3615                      19.56
#> 3616                      48.51
#> 3617                      14.67
#> 3618                      11.97
#> 3619                      16.65
#> 3620                      39.35
#> 3621                       15.6
#> 3622                       12.3
#> 3623                      18.27
#> 3624                      34.36
#> 3625                      17.54
#> 3626                       15.3
#> 3627                      19.62
#> 3628                      30.89
#> 3629                      14.96
#> 3630                      11.87
#> 3631                      17.79
#> 3632                      39.08
#> 3633                      23.07
#> 3634                      17.29
#> 3635                      28.69
#> 3636                      43.45
#> 3637                      19.54
#> 3638                      16.11
#> 3639                      23.47
#> 3640                      35.61
#> 3641                      17.37
#> 3642                      14.55
#> 3643                      20.16
#> 3644                      33.33
#> 3645                      18.83
#> 3646                      15.86
#> 3647                       21.3
#> 3648                      37.43
#> 3649                      17.57
#> 3650                      14.72
#> 3651                      20.33
#> 3652                      37.43
#> 3653                      19.25
#> 3654                      16.56
#> 3655                       21.9
#> 3656                      30.37
#> 3657                      16.94
#> 3658                      14.92
#> 3659                      17.28
#> 3660                      38.51
#> 3661                      18.69
#> 3662                      15.81
#> 3663                      21.35
#> 3664                      35.33
#> 3665                      16.24
#> 3666                      13.02
#> 3667                      19.82
#> 3668                       37.1
#> 3669                       16.5
#> 3670                      14.22
#> 3671                      19.05
#> 3672                      37.43
#> 3673                      20.36
#> 3674                      17.83
#> 3675                      22.62
#> 3676                      34.43
#> 3677                       18.1
#> 3678                      16.25
#> 3679                      19.25
#> 3680                      34.19
#> 3681                      21.37
#> 3682                      18.96
#> 3683                      23.53
#> 3684                      38.36
#> 3685                       19.6
#> 3686                      16.84
#> 3687                      21.97
#> 3688                      30.99
#> 3689                      13.66
#> 3690                      11.61
#> 3691                      14.67
#> 3692                      34.97
#> 3693                      19.83
#> 3694                      17.14
#> 3695                      22.29
#> 3696                      32.48
#> 3697                      16.76
#> 3698                      14.55
#> 3699                      18.97
#> 3700                      32.51
#> 3701                      15.28
#> 3702                      12.81
#> 3703                      17.25
#> 3704                      39.25
#> 3705                      21.35
#> 3706                      20.62
#> 3707                      21.79
#> 3708                      53.82
#> 3709                      18.51
#> 3710                      17.43
#> 3711                         19
#> 3712                      38.19
#> 3713                       12.5
#> 3714                       9.14
#> 3715                      16.25
#> 3716                      27.49
#> 3717                      17.68
#> 3718                       14.9
#> 3719                      19.82
#> 3720                      40.55
#> 3721                      14.45
#> 3722                      12.62
#> 3723                      15.23
#> 3724                      39.06
#> 3725                      19.45
#> 3726                      19.12
#> 3727                      18.76
#> 3728                      43.11
#> 3729                      18.75
#> 3730                      14.98
#> 3731                      22.29
#> 3732                         47
#> 3733                      17.54
#> 3734                      14.45
#> 3735                      20.56
#> 3736                      44.95
#> 3737                      20.23
#> 3738                      18.36
#> 3739                      20.98
#> 3740                      35.74
#> 3741                      17.56
#> 3742                      13.23
#> 3743                      21.66
#> 3744                       35.6
#> 3745                      18.63
#> 3746                      15.81
#> 3747                      21.03
#> 3748                      33.75
#> 3749                      15.11
#> 3750                      10.97
#> 3751                      19.33
#> 3752                      32.18
#> 3753                      16.81
#> 3754                      11.56
#> 3755                      21.53
#> 3756                      31.95
#> 3757                       18.4
#> 3758                      15.49
#> 3759                      21.36
#> 3760                      42.26
#> 3761                      19.29
#> 3762                      17.73
#> 3763                      20.51
#> 3764                      36.34
#> 3765                       17.2
#> 3766                      11.95
#> 3767                       20.9
#> 3768                      30.96
#> 3769                      13.27
#> 3770                       9.33
#> 3771                      17.19
#> 3772                      26.14
#> 3773                       16.5
#> 3774                      12.17
#> 3775                       20.4
#> 3776                      35.09
#> 3777                      20.06
#> 3778                      14.65
#> 3779                      26.83
#> 3780                      34.85
#> 3781                      19.28
#> 3782                      13.35
#> 3783                       23.9
#> 3784                      52.69
#> 3785                      21.18
#> 3786                      16.31
#> 3787                      26.32
#> 3788                      32.57
#> 3789                      23.34
#> 3790                      17.86
#> 3791                      28.11
#> 3792                      41.15
#> 3793                      16.58
#> 3794                      12.94
#> 3795                      19.68
#> 3796                      36.24
#> 3797                      20.64
#> 3798                       15.6
#> 3799                       24.9
#> 3800                      38.48
#> 3801                       15.8
#> 3802                      10.62
#> 3803                      21.29
#> 3804                      32.34
#> 3805                      19.39
#> 3806                      15.35
#> 3807                      22.83
#> 3808                      39.61
#> 3809                      17.24
#> 3810                      12.34
#> 3811                      22.55
#> 3812                      29.64
#> 3813                      14.77
#> 3814                      11.25
#> 3815                      18.13
#> 3816                      31.37
#> 3817                      17.59
#> 3818                      13.08
#> 3819                      22.03
#> 3820                      35.16
#> 3821                      18.47
#> 3822                       12.9
#> 3823                      23.96
#> 3824                         35
#> 3825                      16.27
#> 3826                      10.29
#> 3827                      21.24
#> 3828                      38.22
#> 3829                      22.18
#> 3830                      16.23
#> 3831                      28.82
#> 3832                      42.07
#> 3833                      17.92
#> 3834                      12.28
#> 3835                       23.6
#> 3836                      32.22
#> 3837                      16.96
#> 3838                      11.64
#> 3839                      23.28
#> 3840                      32.87
#> 3841                      20.09
#> 3842                      13.47
#> 3843                      26.32
#> 3844                      36.58
#> 3845                      20.06
#> 3846                         15
#> 3847                      23.39
#> 3848                      42.03
#> 3849                      17.05
#> 3850                      11.65
#> 3851                      22.46
#> 3852                      33.18
#> 3853                       19.8
#> 3854                      14.31
#> 3855                      25.81
#> 3856                      30.57
#> 3857                          c
#> 3858                          c
#> 3859                      16.04
#> 3860                      10.77
#> 3861                      21.71
#> 3862                      29.29
#> 3863                      16.64
#> 3864                      11.84
#> 3865                      20.58
#> 3866                         35
#> 3867                      19.11
#> 3868                      13.17
#> 3869                      23.43
#> 3870                       30.1
#> 3871                      19.36
#> 3872                      13.87
#> 3873                      24.55
#> 3874                      39.98
#> 3875                      19.13
#> 3876                      12.74
#> 3877                      25.92
#> 3878                      34.57
#> 3879                      17.09
#> 3880                       12.3
#> 3881                      21.81
#> 3882                      32.85
#> 3883                      18.19
#> 3884                      14.08
#> 3885                       22.1
#> 3886                      35.24
#> 3887                      20.19
#> 3888                      15.22
#> 3889                      24.73
#> 3890                      34.34
#> 3891                      20.08
#> 3892                      14.75
#> 3893                      25.37
#> 3894                      36.04
#> 3895                      21.62
#> 3896                      15.94
#> 3897                      28.31
#> 3898                      31.04
#> 3899                      21.33
#> 3900                      15.04
#> 3901                         27
#> 3902                      37.85
#> 3903                      19.16
#> 3904                       14.1
#> 3905                      24.48
#> 3906                      31.33
#> 3907                      20.71
#> 3908                      17.54
#> 3909                      23.82
#> 3910                       25.7
#> 3911                      19.77
#> 3912                      15.44
#> 3913                      23.95
#> 3914                      34.18
#> 3915                      20.08
#> 3916                      14.76
#> 3917                      23.11
#> 3918                      41.03
#> 3919                      20.49
#> 3920                      15.84
#> 3921                      24.45
#> 3922                      39.51
#> 3923                       18.2
#> 3924                      13.65
#> 3925                      21.55
#> 3926                      32.83
#> 3927                      22.18
#> 3928                       16.4
#> 3929                      28.08
#> 3930                      29.85
#> 3931                      21.34
#> 3932                      15.63
#> 3933                      27.34
#> 3934                      32.57
#> 3935                       18.6
#> 3936                      14.07
#> 3937                      22.92
#> 3938                      30.14
#> 3939                      18.62
#> 3940                      14.25
#> 3941                      22.81
#> 3942                       35.5
#> 3943                      22.07
#> 3944                      15.96
#> 3945                      27.68
#> 3946                      34.16
#> 3947                      15.16
#> 3948                      10.62
#> 3949                      19.44
#> 3950                      36.89
#> 3951                      19.25
#> 3952                      13.55
#> 3953                      25.21
#> 3954                       38.9
#> 3955                      20.81
#> 3956                      17.57
#> 3957                      24.16
#> 3958                      29.28
#> 3959                      15.44
#> 3960                      11.27
#> 3961                      19.83
#> 3962                      31.63
#> 3963                      18.09
#> 3964                      12.41
#> 3965                      24.04
#> 3966                      32.67
#> 3967                      18.08
#> 3968                      12.51
#> 3969                         24
#> 3970                      29.03
#> 3971                      16.68
#> 3972                         11
#> 3973                      21.91
#> 3974                      33.11
#> 3975                      19.02
#> 3976                      15.06
#> 3977                      22.72
#> 3978                      33.48
#> 3979                      18.48
#> 3980                      13.32
#> 3981                      23.37
#> 3982                      41.59
#> 3983                      19.28
#> 3984                      16.89
#> 3985                      20.66
#> 3986                      41.25
#> 3987                      19.52
#> 3988                      15.63
#> 3989                      22.34
#> 3990                      42.99
#> 3991                      20.22
#> 3992                      16.16
#> 3993                      24.38
#> 3994                      43.02
#> 3995                      20.81
#> 3996                      16.46
#> 3997                      25.61
#> 3998                       36.8
#> 3999                      16.83
#> 4000                      12.55
#> 4001                      21.21
#> 4002                       36.5
#> 4003                      18.88
#> 4004                      13.84
#> 4005                      23.67
#> 4006                      34.87
#> 4007                      12.83
#> 4008                      10.35
#> 4009                      14.56
#> 4010                      28.67
#> 4011                      17.82
#> 4012                      13.46
#> 4013                      22.06
#> 4014                      33.62
#> 4015                      25.12
#> 4016                      20.07
#> 4017                      32.93
#> 4018                      41.99
#> 4019                      21.08
#> 4020                      16.31
#> 4021                      25.43
#> 4022                      38.11
#> 4023                      18.18
#> 4024                      13.72
#> 4025                      22.73
#> 4026                      35.17
#> 4027                      21.13
#> 4028                      14.44
#> 4029                      27.92
#> 4030                      32.77
#> 4031                       19.9
#> 4032                       14.7
#> 4033                       24.1
#> 4034                      34.48
#> 4035                      17.95
#> 4036                      13.87
#> 4037                      22.15
#> 4038                      30.63
#> 4039                      19.45
#> 4040                      14.82
#> 4041                       24.1
#> 4042                       35.1
#> 4043                      20.26
#> 4044                      16.07
#> 4045                      24.81
#> 4046                      31.35
#> 4047                      17.34
#> 4048                      12.15
#> 4049                      22.85
#> 4050                      29.71
#> 4051                       21.8
#> 4052                      15.31
#> 4053                      29.76
#> 4054                      26.05
#> 4055                      19.24
#> 4056                      14.55
#> 4057                      23.94
#> 4058                      28.78
#> 4059                      17.97
#> 4060                      12.95
#> 4061                      23.07
#> 4062                      30.86
#> 4063                      17.42
#> 4064                      12.08
#> 4065                      22.58
#> 4066                      36.97
#> 4067                      20.13
#> 4068                      14.09
#> 4069                      26.82
#> 4070                      38.11
#> 4071                      18.79
#> 4072                      14.63
#> 4073                      23.37
#> 4074                      30.26
#> 4075                      20.44
#> 4076                      15.66
#> 4077                      24.81
#> 4078                      34.08
#> 4079                       20.7
#> 4080                      15.88
#> 4081                      25.18
#> 4082                      37.84
#> 4083                      23.16
#> 4084                       17.6
#> 4085                      29.11
#> 4086                      40.17
#> 4087                      17.75
#> 4088                      14.03
#> 4089                      20.85
#> 4090                      31.56
#> 4091                      16.87
#> 4092                      13.57
#> 4093                      20.08
#> 4094                      32.73
#> 4095                      19.11
#> 4096                      15.49
#> 4097                       22.5
#> 4098                       35.5
#> 4099                       19.2
#> 4100                      14.51
#> 4101                      24.22
#> 4102                      40.11
#> 4103                      17.86
#> 4104                      13.48
#> 4105                      22.18
#> 4106                      34.74
#> 4107                      20.46
#> 4108                      16.47
#> 4109                      23.92
#> 4110                      38.84
#> 4111                      19.47
#> 4112                      16.15
#> 4113                       21.7
#> 4114                      49.56
#> 4115                      15.41
#> 4116                      10.04
#> 4117                      19.45
#> 4118                      20.87
#> 4119                      17.85
#> 4120                      24.16
#> 4121                      31.13
#> 4122                      19.13
#> 4123                      14.29
#> 4124                      23.95
#> 4125                      34.12
#> 4126                      16.66
#> 4127                      12.14
#> 4128                      20.82
#> 4129                      34.02
#> 4130                      16.65
#> 4131                      12.52
#> 4132                      21.16
#> 4133                      29.02
#> 4134                      16.38
#> 4135                      11.28
#> 4136                      21.77
#> 4137                      29.45
#> 4138                      18.34
#> 4139                       13.1
#> 4140                      23.06
#> 4141                      35.96
#> 4142                      16.97
#> 4143                      12.73
#> 4144                      21.52
#> 4145                      30.03
#> 4146                      18.64
#> 4147                      14.53
#> 4148                      22.36
#> 4149                      35.91
#> 4150                      16.05
#> 4151                      11.16
#> 4152                      21.02
#> 4153                      33.88
#> 4154                      17.41
#> 4155                      13.86
#> 4156                      20.66
#> 4157                      27.76
#> 4158                      20.02
#> 4159                      14.86
#> 4160                      25.38
#> 4161                      37.55
#> 4162                      18.22
#> 4163                      12.36
#> 4164                      24.15
#> 4165                      37.54
#> 4166                      19.78
#> 4167                      16.53
#> 4168                      21.93
#> 4169                      44.98
#> 4170                      20.26
#> 4171                      16.64
#> 4172                      24.04
#> 4173                      33.14
#> 4174                      18.87
#> 4175                      14.33
#> 4176                      23.69
#> 4177                      31.12
#> 4178                      19.91
#> 4179                      16.42
#> 4180                      23.43
#> 4181                      36.31
#> 4182                      18.29
#> 4183                      13.19
#> 4184                      22.37
#> 4185                      41.59
#> 4186                      20.97
#> 4187                      15.96
#> 4188                      25.95
#> 4189                       34.7
#> 4190                      19.18
#> 4191                      16.56
#> 4192                      21.49
#> 4193                      32.67
#> 4194                      16.12
#> 4195                      11.78
#> 4196                      20.11
#> 4197                      28.33
#> 4198                      17.59
#> 4199                      13.19
#> 4200                      22.09
#> 4201                      32.26
#> 4202                      17.51
#> 4203                      12.59
#> 4204                       21.5
#> 4205                      32.04
#> 4206                      17.38
#> 4207                       13.5
#> 4208                      21.18
#> 4209                      32.49
#> 4210                       18.1
#> 4211                      14.01
#> 4212                      21.82
#> 4213                       32.7
#> 4214                       17.6
#> 4215                      14.41
#> 4216                      20.45
#> 4217                      37.73
#> 4218                      17.57
#> 4219                      15.05
#> 4220                      19.42
#> 4221                      32.45
#> 4222                      16.53
#> 4223                      13.89
#> 4224                      19.68
#> 4225                      26.74
#> 4226                      17.68
#> 4227                      12.86
#> 4228                      22.61
#> 4229                      28.32
#> 4230                       16.5
#> 4231                      12.31
#> 4232                      19.56
#> 4233                      33.76
#> 4234                       16.4
#> 4235                      12.96
#> 4236                      19.81
#> 4237                      33.39
#> 4238                      17.93
#> 4239                       14.1
#> 4240                      21.95
#> 4241                      32.32
#> 4242                      15.96
#> 4243                       12.5
#> 4244                      19.03
#> 4245                      33.39
#> 4246                      18.54
#> 4247                      14.03
#> 4248                      23.13
#> 4249                      30.55
#> 4250                      18.49
#> 4251                      13.32
#> 4252                      23.94
#> 4253                      32.06
#> 4254                      17.37
#> 4255                      15.07
#> 4256                      19.22
#> 4257                      37.03
#> 4258                          c
#> 4259                          c
#> 4260                      18.15
#> 4261                      16.44
#> 4262                      19.06
#> 4263                         48
#> 4264                      14.25
#> 4265                      11.83
#> 4266                      15.95
#> 4267                      39.32
#> 4268                      15.89
#> 4269                      12.74
#> 4270                      18.38
#> 4271                      35.07
#> 4272                      16.91
#> 4273                      14.78
#> 4274                      18.86
#> 4275                      30.56
#> 4276                       15.2
#> 4277                      12.22
#> 4278                      17.93
#> 4279                         39
#> 4280                      21.86
#> 4281                      16.71
#> 4282                      26.76
#> 4283                      42.76
#> 4284                      19.26
#> 4285                      15.89
#> 4286                      23.14
#> 4287                      34.79
#> 4288                      16.67
#> 4289                      14.29
#> 4290                      18.91
#> 4291                      32.67
#> 4292                      18.12
#> 4293                      15.41
#> 4294                      20.29
#> 4295                      36.94
#> 4296                      17.62
#> 4297                      14.88
#> 4298                      20.22
#> 4299                      37.98
#> 4300                      18.79
#> 4301                      16.38
#> 4302                      21.11
#> 4303                      30.43
#> 4304                      16.42
#> 4305                      14.28
#> 4306                      16.93
#> 4307                      37.31
#> 4308                      18.11
#> 4309                      15.61
#> 4310                      20.33
#> 4311                      33.83
#> 4312                       15.7
#> 4313                      12.86
#> 4314                      18.75
#> 4315                      37.33
#> 4316                      16.34
#> 4317                      14.17
#> 4318                      18.75
#> 4319                      37.72
#> 4320                      19.79
#> 4321                      17.35
#> 4322                      21.91
#> 4323                      34.12
#> 4324                      17.73
#> 4325                       16.1
#> 4326                      18.71
#> 4327                      32.56
#> 4328                      20.63
#> 4329                      18.48
#> 4330                       22.4
#> 4331                      38.24
#> 4332                      19.15
#> 4333                       16.9
#> 4334                      21.02
#> 4335                      30.05
#> 4336                      13.63
#> 4337                      11.82
#> 4338                      14.35
#> 4339                      35.67
#> 4340                       19.6
#> 4341                      17.08
#> 4342                      21.86
#> 4343                      32.53
#> 4344                      16.84
#> 4345                       14.8
#> 4346                      18.82
#> 4347                      32.56
#> 4348                       15.3
#> 4349                         13
#> 4350                      17.02
#> 4351                      39.63
#> 4352                      20.51
#> 4353                      19.75
#> 4354                      20.98
#> 4355                      52.38
#> 4356                      17.18
#> 4357                      16.35
#> 4358                       17.4
#> 4359                      37.22
#> 4360                      12.54
#> 4361                       9.32
#> 4362                      16.11
#> 4363                      27.58
#> 4364                      17.39
#> 4365                      14.85
#> 4366                      19.27
#> 4367                      40.28
#> 4368                      14.26
#> 4369                      12.53
#> 4370                      14.96
#> 4371                      38.25
#> 4372                      19.68
#> 4373                      19.38
#> 4374                      18.92
#> 4375                       43.4
#> 4376                      17.94
#> 4377                      14.44
#> 4378                      21.11
#> 4379                       46.7
#> 4380                      16.96
#> 4381                      14.14
#> 4382                       19.5
#> 4383                      44.59
#> 4384                       19.5
#> 4385                      18.05
#> 4386                      19.97
#> 4387                      35.38
#> 4388                      17.46
#> 4389                      13.26
#> 4390                      21.43
#> 4391                      35.47
#> 4392                      18.76
#> 4393                      15.91
#> 4394                      21.21
#> 4395                      33.68
#> 4396                      15.12
#> 4397                      11.06
#> 4398                      19.21
#> 4399                      33.14
#> 4400                      16.92
#> 4401                      11.64
#> 4402                       21.7
#> 4403                      31.07
#> 4404                      18.31
#> 4405                      15.51
#> 4406                      21.16
#> 4407                      41.05
#> 4408                      18.54
#> 4409                      17.11
#> 4410                      19.63
#> 4411                      35.41
#> 4412                      16.99
#> 4413                       11.9
#> 4414                      20.51
#> 4415                      31.41
#> 4416                      13.16
#> 4417                       9.27
#> 4418                      17.06
#> 4419                      25.74
#> 4420                      16.46
#> 4421                      12.19
#> 4422                      20.29
#> 4423                      35.24
#> 4424                      19.91
#> 4425                      14.52
#> 4426                      26.58
#> 4427                      36.36
#> 4428                      19.08
#> 4429                      13.12
#> 4430                      23.64
#> 4431                      53.67
#> 4432                      21.24
#> 4433                       16.5
#> 4434                      26.23
#> 4435                      32.37
#> 4436                      23.39
#> 4437                      18.01
#> 4438                      28.15
#> 4439                       39.5
#> 4440                       16.3
#> 4441                      12.77
#> 4442                      19.29
#> 4443                      36.06
#> 4444                      20.33
#> 4445                      15.82
#> 4446                      24.14
#> 4447                      38.97
#> 4448                      15.91
#> 4449                      10.79
#> 4450                      21.34
#> 4451                      32.32
#> 4452                      19.13
#> 4453                      15.31
#> 4454                      22.33
#> 4455                      38.94
#> 4456                      17.16
#> 4457                      12.36
#> 4458                      22.35
#> 4459                      29.58
#> 4460                      14.84
#> 4461                      11.37
#> 4462                      18.12
#> 4463                      31.56
#> 4464                      17.58
#> 4465                      13.16
#> 4466                       21.9
#> 4467                      35.04
#> 4468                      18.52
#> 4469                      13.04
#> 4470                      23.91
#> 4471                      35.23
#> 4472                      16.32
#> 4473                      10.43
#> 4474                      21.21
#> 4475                      38.03
#> 4476                      21.85
#> 4477                      16.06
#> 4478                      28.31
#> 4479                      41.25
#> 4480                      18.03
#> 4481                      12.37
#> 4482                      23.69
#> 4483                      33.26
#> 4484                      17.03
#> 4485                      11.91
#> 4486                      23.06
#> 4487                      33.95
#> 4488                      20.09
#> 4489                      13.71
#> 4490                      26.11
#> 4491                      36.05
#> 4492                      20.49
#> 4493                      15.59
#> 4494                      23.68
#> 4495                      42.23
#> 4496                      17.24
#> 4497                      11.96
#> 4498                      22.55
#> 4499                      32.73
#> 4500                      19.97
#> 4501                      14.46
#> 4502                         26
#> 4503                      30.86
#> 4504                          c
#> 4505                          c
#> 4506                      16.16
#> 4507                      10.92
#> 4508                      21.76
#> 4509                      29.93
#> 4510                      16.62
#> 4511                      11.85
#> 4512                      20.55
#> 4513                      34.95
#> 4514                      19.07
#> 4515                      13.25
#> 4516                      23.28
#> 4517                      29.98
#> 4518                      19.45
#> 4519                      14.07
#> 4520                      24.52
#> 4521                      39.97
#> 4522                      19.17
#> 4523                      12.96
#> 4524                      25.73
#> 4525                      35.23
#> 4526                      17.19
#> 4527                      12.37
#> 4528                       21.9
#> 4529                      33.99
#> 4530                      18.63
#> 4531                      14.63
#> 4532                       22.4
#> 4533                      35.71
#> 4534                      20.41
#> 4535                      15.44
#> 4536                      24.95
#> 4537                       34.6
#> 4538                      20.16
#> 4539                       14.8
#> 4540                      25.49
#> 4541                      36.04
#> 4542                       21.7
#> 4543                      15.98
#> 4544                      28.42
#> 4545                      31.09
#> 4546                      21.26
#> 4547                      15.15
#> 4548                      26.75
#> 4549                      37.85
#> 4550                      19.19
#> 4551                      14.04
#> 4552                      24.59
#> 4553                      31.54
#> 4554                      20.89
#> 4555                      17.76
#> 4556                      23.99
#> 4557                      25.29
#> 4558                      19.78
#> 4559                       15.5
#> 4560                      23.95
#> 4561                      33.78
#> 4562                      20.86
#> 4563                      15.53
#> 4564                      23.85
#> 4565                      42.11
#> 4566                      20.86
#> 4567                      16.32
#> 4568                       24.7
#> 4569                      39.94
#> 4570                      18.88
#> 4571                      14.31
#> 4572                      22.27
#> 4573                      33.33
#> 4574                      22.32
#> 4575                      16.61
#> 4576                      28.16
#> 4577                      29.57
#> 4578                      21.45
#> 4579                      15.64
#> 4580                       27.5
#> 4581                      33.58
#> 4582                      18.63
#> 4583                      14.08
#> 4584                      22.98
#> 4585                       30.1
#> 4586                      19.15
#> 4587                      14.88
#> 4588                      23.21
#> 4589                      36.06
#> 4590                      22.84
#> 4591                       16.9
#> 4592                      28.27
#> 4593                      34.85
#> 4594                      15.75
#> 4595                      11.36
#> 4596                      19.85
#> 4597                      37.26
#> 4598                      19.66
#> 4599                      14.13
#> 4600                      25.43
#> 4601                      38.94
#> 4602                      21.35
#> 4603                      18.12
#> 4604                      24.66
#> 4605                      30.04
#> 4606                      16.07
#> 4607                      11.91
#> 4608                      20.43
#> 4609                      32.48
#> 4610                       18.8
#> 4611                      13.22
#> 4612                      24.58
#> 4613                      33.88
#> 4614                      18.74
#> 4615                      13.31
#> 4616                      24.51
#> 4617                      29.45
#> 4618                      17.22
#> 4619                      11.51
#> 4620                      22.49
#> 4621                      32.09
#> 4622                      19.56
#> 4623                      15.68
#> 4624                      23.13
#> 4625                      34.81
#> 4626                      19.09
#> 4627                      13.89
#> 4628                         24
#> 4629                      43.21
#> 4630                      19.56
#> 4631                      17.34
#> 4632                      20.73
#> 4633                      41.99
#> 4634                      20.02
#> 4635                      16.34
#> 4636                      22.62
#> 4637                      42.82
#> 4638                      20.51
#> 4639                      16.52
#> 4640                      24.61
#> 4641                      42.56
#> 4642                      21.33
#> 4643                      17.05
#> 4644                      26.02
#> 4645                      37.42
#> 4646                      17.34
#> 4647                      13.19
#> 4648                      21.53
#> 4649                      37.28
#> 4650                      19.47
#> 4651                      14.59
#> 4652                      24.11
#> 4653                      34.93
#> 4654                      13.32
#> 4655                      10.96
#> 4656                      14.96
#> 4657                      28.62
#> 4658                      18.42
#> 4659                      14.11
#> 4660                      22.57
#> 4661                      34.81
#> 4662                      25.92
#> 4663                      20.89
#> 4664                      33.72
#> 4665                      42.67
#> 4666                       21.5
#> 4667                      16.84
#> 4668                      25.71
#> 4669                      38.59
#> 4670                      18.68
#> 4671                      14.36
#> 4672                      23.08
#> 4673                      35.33
#> 4674                      21.67
#> 4675                      15.03
#> 4676                      28.41
#> 4677                      33.33
#> 4678                      20.47
#> 4679                      15.42
#> 4680                      24.48
#> 4681                      35.28
#> 4682                      18.49
#> 4683                      14.49
#> 4684                       22.6
#> 4685                      31.07
#> 4686                      19.98
#> 4687                      15.49
#> 4688                      24.48
#> 4689                      35.63
#> 4690                      20.72
#> 4691                      16.53
#> 4692                      25.24
#> 4693                      32.04
#> 4694                      17.93
#> 4695                      12.87
#> 4696                      23.29
#> 4697                      30.29
#> 4698                      22.57
#> 4699                      16.11
#> 4700                      30.48
#> 4701                      26.77
#> 4702                      19.91
#> 4703                      15.27
#> 4704                      24.56
#> 4705                      28.78
#> 4706                      18.35
#> 4707                      13.42
#> 4708                      23.41
#> 4709                      29.32
#> 4710                      18.09
#> 4711                      12.83
#> 4712                      23.16
#> 4713                      37.63
#> 4714                      20.75
#> 4715                      14.89
#> 4716                      27.27
#> 4717                      37.41
#> 4718                      19.46
#> 4719                       15.4
#> 4720                      23.93
#> 4721                      31.01
#> 4722                      20.97
#> 4723                      16.56
#> 4724                      24.87
#> 4725                      35.46
#> 4726                      21.04
#> 4727                      16.42
#> 4728                      25.29
#> 4729                      38.31
#> 4730                      23.66
#> 4731                      18.38
#> 4732                      29.25
#> 4733                      40.71
#> 4734                       18.5
#> 4735                      14.95
#> 4736                      21.44
#> 4737                      32.06
#> 4738                      17.37
#> 4739                      14.22
#> 4740                       20.4
#> 4741                      33.37
#> 4742                       19.6
#> 4743                      16.04
#> 4744                      22.93
#> 4745                      36.23
#> 4746                      19.66
#> 4747                      15.03
#> 4748                      24.65
#> 4749                      39.75
#> 4750                       18.3
#> 4751                      14.08
#> 4752                      22.44
#> 4753                      34.91
#> 4754                      20.96
#> 4755                      17.26
#> 4756                      24.23
#> 4757                      37.45
#> 4758                      19.19
#> 4759                      16.22
#> 4760                      20.98
#> 4761                      49.67
#> 4762                      15.99
#> 4763                      10.48
#> 4764                      20.13
#> 4765                      21.12
#> 4766                      18.38
#> 4767                      24.07
#> 4768                      31.74
#> 4769                      19.73
#> 4770                      14.96
#> 4771                      24.51
#> 4772                      34.32
#> 4773                      17.11
#> 4774                      12.68
#> 4775                      21.15
#> 4776                      34.64
#> 4777                      17.21
#> 4778                      13.16
#> 4779                      21.62
#> 4780                       29.3
#> 4781                      16.85
#> 4782                       11.9
#> 4783                      22.08
#> 4784                      29.42
#> 4785                       18.9
#> 4786                      13.82
#> 4787                      23.44
#> 4788                      36.37
#> 4789                      17.51
#> 4790                      13.43
#> 4791                      21.88
#> 4792                       30.5
#> 4793                      19.03
#> 4794                      15.07
#> 4795                      22.61
#> 4796                      36.19
#> 4797                      16.45
#> 4798                      11.48
#> 4799                       21.5
#> 4800                      34.15
#> 4801                      17.74
#> 4802                      14.43
#> 4803                      20.72
#> 4804                      28.21
#> 4805                      20.47
#> 4806                      15.32
#> 4807                      25.74
#> 4808                      39.06
#> 4809                       18.7
#> 4810                      12.82
#> 4811                      24.67
#> 4812                       37.5
#> 4813                      20.16
#> 4814                      17.12
#> 4815                      22.12
#> 4816                      44.79
#> 4817                      20.61
#> 4818                      17.07
#> 4819                       24.3
#> 4820                      33.44
#> 4821                      19.35
#> 4822                      14.94
#> 4823                      23.98
#> 4824                      32.09
#> 4825                      20.21
#> 4826                      16.83
#> 4827                      23.59
#> 4828                      36.41
#> 4829                      18.57
#> 4830                      13.77
#> 4831                      22.33
#> 4832                      42.13
#> 4833                      21.12
#> 4834                      16.38
#> 4835                       25.8
#> 4836                      34.81
#> 4837                      19.31
#> 4838                      16.84
#> 4839                      21.41
#> 4840                      33.63
#> 4841                      16.71
#> 4842                      12.53
#> 4843                      20.56
#> 4844                       28.4
#> 4845                      18.06
#> 4846                      13.77
#> 4847                      22.42
#> 4848                      32.89
#> 4849                      17.99
#> 4850                      13.14
#> 4851                       21.9
#> 4852                       32.7
#> 4853                      17.85
#> 4854                      14.05
#> 4855                      21.52
#> 4856                      33.32
#> 4857                       18.7
#> 4858                      14.71
#> 4859                      22.34
#> 4860                      33.09
#> 4861                      18.01
#> 4862                      14.96
#> 4863                      20.62
#> 4864                      38.88
#> 4865                      18.31
#> 4866                      15.95
#> 4867                      19.97
#> 4868                      33.83
#> 4869                      17.18
#> 4870                      14.63
#> 4871                      20.19
#> 4872                      28.01
#> 4873                       17.9
#> 4874                      13.15
#> 4875                      22.78
#> 4876                      27.79
#> 4877                      16.88
#> 4878                      12.75
#> 4879                      19.85
#> 4880                      34.78
#> 4881                      16.73
#> 4882                      13.38
#> 4883                      20.02
#> 4884                      34.12
#> 4885                      18.42
#> 4886                      14.73
#> 4887                      22.26
#> 4888                      33.25
#> 4889                      16.39
#> 4890                      12.97
#> 4891                      19.43
#> 4892                      33.53
#> 4893                      19.02
#> 4894                      14.55
#> 4895                      23.52
#> 4896                      31.55
#> 4897                         19
#> 4898                      13.93
#> 4899                      24.28
#> 4900                      33.75
#> 4901                      17.73
#> 4902                       15.6
#> 4903                      19.39
#> 4904                      37.47
#> 4905                          c
#> 4906                          c
#> 4907                      18.59
#> 4908                      17.04
#> 4909                      19.32
#> 4910                      48.25
#> 4911                      14.58
#> 4912                      12.26
#> 4913                      16.18
#> 4914                      39.64
#> 4915                      16.21
#> 4916                      13.19
#> 4917                       18.5
#> 4918                      35.96
#> 4919                      17.13
#> 4920                      15.08
#> 4921                      18.97
#> 4922                       30.6
#> 4923                      15.63
#> 4924                      12.67
#> 4925                       18.3
#> 4926                      39.65
#> 4927                      22.34
#> 4928                      17.47
#> 4929                      26.97
#> 4930                      42.07
#> 4931                      19.65
#> 4932                      16.55
#> 4933                      23.13
#> 4934                      35.82
#> 4935                      16.92
#> 4936                      14.67
#> 4937                      18.96
#> 4938                         33
#> 4939                      18.54
#> 4940                      15.94
#> 4941                      20.54
#> 4942                      37.83
#> 4943                      17.76
#> 4944                      15.19
#> 4945                      20.19
#> 4946                      37.25
#> 4947                       19.2
#> 4948                      16.73
#> 4949                      21.55
#> 4950                      31.58
#> 4951                      16.98
#> 4952                      14.85
#> 4953                      17.52
#> 4954                      37.44
#> 4955                      18.51
#> 4956                      16.17
#> 4957                       20.5
#> 4958                      34.97
#> 4959                      16.02
#> 4960                      13.34
#> 4961                      18.88
#> 4962                      37.13
#> 4963                      16.82
#> 4964                      14.69
#> 4965                      19.17
#> 4966                      38.46
#> 4967                       20.3
#> 4968                      18.19
#> 4969                      22.04
#> 4970                      34.43
#> 4971                       18.1
#> 4972                      16.68
#> 4973                       18.8
#> 4974                      34.04
#> 4975                      21.05
#> 4976                      19.11
#> 4977                      22.45
#> 4978                      39.57
#> 4979                      19.47
#> 4980                       17.3
#> 4981                      21.31
#> 4982                      28.77
#> 4983                      13.99
#> 4984                      12.43
#> 4985                      14.51
#> 4986                      35.19
#> 4987                      19.75
#> 4988                      17.33
#> 4989                      21.96
#> 4990                      31.61
#> 4991                      17.29
#> 4992                      15.43
#> 4993                      18.98
#> 4994                      33.87
#> 4995                      15.63
#> 4996                      13.55
#> 4997                      17.06
#> 4998                      39.85
#> 4999                      20.82
#> 5000                      20.35
#> 5001                      20.98
#> 5002                      51.66
#> 5003                      17.62
#> 5004                      16.96
#> 5005                      17.72
#> 5006                      36.22
#> 5007                      12.92
#> 5008                       9.77
#> 5009                      16.39
#> 5010                      28.27
#> 5011                      17.93
#> 5012                      15.59
#> 5013                      19.53
#> 5014                      40.87
#> 5015                      14.73
#> 5016                      13.13
#> 5017                      15.28
#> 5018                      39.58
#> 5019                      20.06
#> 5020                      20.04
#> 5021                      18.91
#> 5022                      44.35
#> 5023                       18.2
#> 5024                      14.97
#> 5025                      21.07
#> 5026                      46.23
#> 5027                      17.12
#> 5028                      14.35
#> 5029                      19.55
#> 5030                       45.1
#> 5031                      19.78
#> 5032                      18.76
#> 5033                      19.95
#> 5034                       36.5
#> 5035                      17.92
#> 5036                       13.8
#> 5037                      21.78
#> 5038                       36.1
#> 5039                       19.4
#> 5040                      16.58
#> 5041                      21.75
#> 5042                      35.54
#> 5043                      15.31
#> 5044                      11.39
#> 5045                      19.27
#> 5046                      32.75
#> 5047                      17.25
#> 5048                      11.97
#> 5049                      22.04
#> 5050                      31.14
#> 5051                      18.68
#> 5052                      16.13
#> 5053                      21.24
#> 5054                      39.58
#> 5055                      18.99
#> 5056                      17.79
#> 5057                      19.86
#> 5058                      34.56
#> 5059                       17.6
#> 5060                      12.38
#> 5061                      21.25
#> 5062                      31.71
#> 5063                      13.62
#> 5064                       9.82
#> 5065                      17.36
#> 5066                      26.89
#> 5067                      16.79
#> 5068                      12.62
#> 5069                      20.46
#> 5070                      36.34
#> 5071                      20.53
#> 5072                      15.15
#> 5073                      27.25
#> 5074                      35.59
#> 5075                      19.55
#> 5076                       13.7
#> 5077                      24.02
#> 5078                      53.62
#> 5079                      21.59
#> 5080                      16.95
#> 5081                      26.44
#> 5082                      33.09
#> 5083                       23.9
#> 5084                      18.43
#> 5085                      28.78
#> 5086                      39.69
#> 5087                      16.83
#> 5088                       13.3
#> 5089                      19.85
#> 5090                      35.36
#> 5091                      20.87
#> 5092                      16.55
#> 5093                      24.47
#> 5094                      39.75
#> 5095                      16.32
#> 5096                      11.25
#> 5097                      21.64
#> 5098                       33.5
#> 5099                      19.68
#> 5100                      15.94
#> 5101                      22.78
#> 5102                      39.86
#> 5103                      17.52
#> 5104                      12.77
#> 5105                      22.62
#> 5106                      30.42
#> 5107                      15.27
#> 5108                      11.88
#> 5109                      18.47
#> 5110                      31.64
#> 5111                      17.98
#> 5112                      13.75
#> 5113                      22.05
#> 5114                      36.25
#> 5115                      18.93
#> 5116                      13.57
#> 5117                      24.21
#> 5118                      35.44
#> 5119                       16.7
#> 5120                      10.72
#> 5121                      21.69
#> 5122                      37.98
#> 5123                      22.27
#> 5124                      16.72
#> 5125                      28.42
#> 5126                      41.63
#> 5127                      18.43
#> 5128                      12.87
#> 5129                      23.94
#> 5130                       34.1
#> 5131                      17.45
#> 5132                      12.48
#> 5133                      23.27
#> 5134                      34.41
#> 5135                      20.56
#> 5136                      14.21
#> 5137                      26.57
#> 5138                      35.91
#> 5139                      20.78
#> 5140                      15.74
#> 5141                      24.07
#> 5142                      42.77
#> 5143                      17.68
#> 5144                      12.44
#> 5145                      22.98
#> 5146                      32.38
#> 5147                      20.36
#> 5148                      15.02
#> 5149                      26.17
#> 5150                      31.93
#> 5151                          c
#> 5152                          c
#> 5153                      16.63
#> 5154                      11.34
#> 5155                      22.31
#> 5156                      29.89
#> 5157                      16.94
#> 5158                      12.25
#> 5159                      20.86
#> 5160                       33.6
#> 5161                      19.62
#> 5162                      14.13
#> 5163                      23.58
#> 5164                      30.13
#> 5165                      19.98
#> 5166                      14.62
#> 5167                      25.01
#> 5168                      40.72
#> 5169                      19.45
#> 5170                      13.47
#> 5171                       25.9
#> 5172                      35.89
#> 5173                      17.61
#> 5174                      12.97
#> 5175                       22.1
#> 5176                       34.4
#> 5177                      18.52
#> 5178                      14.54
#> 5179                      22.29
#> 5180                      35.49
#> 5181                      20.52
#> 5182                      15.67
#> 5183                      24.94
#> 5184                      34.57
#> 5185                      20.49
#> 5186                      15.28
#> 5187                      25.65
#> 5188                       36.4
#> 5189                      22.15
#> 5190                      16.65
#> 5191                      28.63
#> 5192                      31.24
#> 5193                      21.57
#> 5194                      15.77
#> 5195                       26.8
#> 5196                      37.15
#> 5197                      19.41
#> 5198                      14.55
#> 5199                      24.48
#> 5200                       31.6
#> 5201                      20.89
#> 5202                      17.82
#> 5203                      23.81
#> 5204                      27.17
#> 5205                      20.15
#> 5206                       15.9
#> 5207                       24.3
#> 5208                      33.47
#> 5209                      20.68
#> 5210                      15.43
#> 5211                       23.6
#> 5212                      41.97
#> 5213                      20.56
#> 5214                      16.15
#> 5215                      24.29
#> 5216                      39.15
#> 5217                      18.67
#> 5218                      14.18
#> 5219                      21.98
#> 5220                      33.22
#> 5221                       22.5
#> 5222                      16.57
#> 5223                      28.53
#> 5224                      30.69
#> 5225                      21.51
#> 5226                      15.74
#> 5227                      27.55
#> 5228                      33.05
#> 5229                       18.9
#> 5230                      14.55
#> 5231                      23.01
#> 5232                      30.64
#> 5233                      19.03
#> 5234                      14.78
#> 5235                      23.08
#> 5236                      35.83
#> 5237                      22.31
#> 5238                       16.7
#> 5239                      27.39
#> 5240                      34.65
#> 5241                      15.56
#> 5242                      11.09
#> 5243                       19.9
#> 5244                      38.12
#> 5245                      19.66
#> 5246                      14.14
#> 5247                      25.39
#> 5248                      39.86
#> 5249                      21.32
#> 5250                      18.07
#> 5251                      24.65
#> 5252                      30.04
#> 5253                         16
#> 5254                      11.85
#> 5255                      20.34
#> 5256                      32.76
#> 5257                      18.66
#> 5258                      13.21
#> 5259                       24.3
#> 5260                      33.79
#> 5261                      18.64
#> 5262                       13.2
#> 5263                      24.41
#> 5264                      29.87
#> 5265                      17.21
#> 5266                      11.38
#> 5267                      22.57
#> 5268                      33.11
#> 5269                      19.48
#> 5270                      15.55
#> 5271                       23.1
#> 5272                      34.75
#> 5273                      19.12
#> 5274                      14.02
#> 5275                      23.97
#> 5276                      42.47
#> 5277                      19.52
#> 5278                      17.19
#> 5279                      20.81
#> 5280                      41.91
#> 5281                      20.01
#> 5282                      16.41
#> 5283                      22.58
#> 5284                      42.13
#> 5285                      20.27
#> 5286                      16.38
#> 5287                      24.31
#> 5288                      41.57
#> 5289                      21.14
#> 5290                         17
#> 5291                      25.67
#> 5292                      36.78
#> 5293                      17.15
#> 5294                      13.04
#> 5295                      21.34
#> 5296                      36.47
#> 5297                       19.4
#> 5298                      14.54
#> 5299                      24.05
#> 5300                      34.47
#> 5301                      13.24
#> 5302                      10.84
#> 5303                      14.89
#> 5304                      29.09
#> 5305                      18.29
#> 5306                      14.18
#> 5307                      22.24
#> 5308                      34.16
#> 5309                      25.53
#> 5310                      20.71
#> 5311                      32.86
#> 5312                      42.82
#> 5313                      21.36
#> 5314                      16.72
#> 5315                      25.54
#> 5316                      38.28
#> 5317                      18.51
#> 5318                      14.14
#> 5319                      22.97
#> 5320                       35.8
#> 5321                      21.53
#> 5322                      14.91
#> 5323                      28.25
#> 5324                      32.85
#> 5325                      20.34
#> 5326                      15.34
#> 5327                      24.33
#> 5328                      34.76
#> 5329                       18.4
#> 5330                       14.4
#> 5331                      22.51
#> 5332                      30.82
#> 5333                      19.81
#> 5334                      15.35
#> 5335                      24.28
#> 5336                      35.13
#> 5337                      20.43
#> 5338                      16.39
#> 5339                      24.74
#> 5340                      31.05
#> 5341                      17.68
#> 5342                      12.57
#> 5343                      23.12
#> 5344                      28.24
#> 5345                      22.77
#> 5346                      16.37
#> 5347                      30.59
#> 5348                      27.42
#> 5349                      19.83
#> 5350                      15.27
#> 5351                      24.42
#> 5352                      27.91
#> 5353                      17.98
#> 5354                      13.16
#> 5355                      22.93
#> 5356                       28.7
#> 5357                      18.03
#> 5358                       12.8
#> 5359                      23.06
#> 5360                      37.47
#> 5361                      20.49
#> 5362                      14.71
#> 5363                      26.87
#> 5364                      38.57
#> 5365                      19.17
#> 5366                      15.13
#> 5367                      23.62
#> 5368                      30.77
#> 5369                      20.66
#> 5370                      16.33
#> 5371                      24.52
#> 5372                      34.43
#> 5373                      20.82
#> 5374                      16.25
#> 5375                      25.11
#> 5376                      37.66
#> 5377                       23.6
#> 5378                      18.34
#> 5379                      29.19
#> 5380                      40.36
#> 5381                       18.4
#> 5382                      14.64
#> 5383                      21.53
#> 5384                      32.25
#> 5385                      17.21
#> 5386                      14.11
#> 5387                      20.18
#> 5388                      33.74
#> 5389                       19.4
#> 5390                      15.86
#> 5391                      22.73
#> 5392                      35.53
#> 5393                      19.46
#> 5394                       14.9
#> 5395                      24.37
#> 5396                      39.05
#> 5397                      18.21
#> 5398                      14.02
#> 5399                      22.31
#> 5400                      34.73
#> 5401                      20.88
#> 5402                      17.12
#> 5403                      24.19
#> 5404                      37.66
#> 5405                      18.69
#> 5406                      15.89
#> 5407                      20.27
#> 5408                      49.44
#> 5409                      16.35
#> 5410                      10.58
#> 5411                      20.67
#> 5412                      21.39
#> 5413                      18.79
#> 5414                      24.16
#> 5415                      32.05
#> 5416                      19.55
#> 5417                      14.68
#> 5418                      24.37
#> 5419                      34.97
#> 5420                      16.99
#> 5421                      12.68
#> 5422                      20.93
#> 5423                      34.22
#> 5424                      17.17
#> 5425                      13.09
#> 5426                       21.6
#> 5427                      29.69
#> 5428                      16.59
#> 5429                      11.66
#> 5430                       21.8
#> 5431                      29.13
#> 5432                      18.63
#> 5433                      13.59
#> 5434                      23.12
#> 5435                      36.22
#> 5436                      17.77
#> 5437                      13.71
#> 5438                      22.13
#> 5439                      29.42
#> 5440                      18.87
#> 5441                      14.92
#> 5442                      22.43
#> 5443                         36
#> 5444                      16.23
#> 5445                      11.28
#> 5446                      21.25
#> 5447                      34.43
#> 5448                      17.56
#> 5449                      14.09
#> 5450                      20.74
#> 5451                      28.72
#> 5452                      20.34
#> 5453                      15.18
#> 5454                      25.68
#> 5455                      38.22
#> 5456                      18.58
#> 5457                      12.63
#> 5458                      24.63
#> 5459                      37.14
#> 5460                      20.03
#> 5461                      16.97
#> 5462                      22.02
#> 5463                       44.4
#> 5464                      20.34
#> 5465                      16.86
#> 5466                      23.94
#> 5467                      33.36
#> 5468                       19.3
#> 5469                      14.82
#> 5470                      24.07
#> 5471                      30.91
#> 5472                      19.96
#> 5473                       16.6
#> 5474                      23.32
#> 5475                      36.41
#> 5476                      18.31
#> 5477                      13.53
#> 5478                      22.06
#> 5479                      41.73
#> 5480                      20.79
#> 5481                      16.07
#> 5482                      25.47
#> 5483                      35.11
#> 5484                      19.12
#> 5485                      16.74
#> 5486                      21.09
#> 5487                         34
#> 5488                      16.72
#> 5489                      12.54
#> 5490                      20.56
#> 5491                      28.51
#> 5492                      17.88
#> 5493                      13.64
#> 5494                      22.09
#> 5495                      32.48
#> 5496                      17.78
#> 5497                      13.06
#> 5498                      21.55
#> 5499                      32.76
#> 5500                      17.66
#> 5501                       13.9
#> 5502                       21.3
#> 5503                         33
#> 5504                      18.25
#> 5505                      14.54
#> 5506                      21.47
#> 5507                      32.36
#> 5508                       17.8
#> 5509                      14.75
#> 5510                      20.45
#> 5511                       38.3
#> 5512                      18.08
#> 5513                      15.76
#> 5514                      19.74
#> 5515                      32.84
#> 5516                       17.5
#> 5517                      15.04
#> 5518                      20.42
#> 5519                      27.35
#> 5520                      17.59
#> 5521                      12.82
#> 5522                      22.44
#> 5523                      28.57
#> 5524                      16.76
#> 5525                      12.67
#> 5526                      19.72
#> 5527                      34.53
#> 5528                      16.59
#> 5529                      13.23
#> 5530                       19.9
#> 5531                      33.58
#> 5532                      18.26
#> 5533                      14.58
#> 5534                      22.08
#> 5535                      33.14
#> 5536                      16.17
#> 5537                      12.77
#> 5538                      19.19
#> 5539                      33.44
#> 5540                      18.79
#> 5541                      14.34
#> 5542                      23.27
#> 5543                      31.31
#> 5544                      18.83
#> 5545                      13.79
#> 5546                      24.09
#> 5547                      33.01
#> 5548                      17.68
#> 5549                       15.5
#> 5550                      19.41
#> 5551                      37.15
#> 5552                          c
#> 5553                          c
#> 5554                      18.37
#> 5555                      16.82
#> 5556                      19.09
#> 5557                      48.91
#> 5558                       14.6
#> 5559                      12.21
#> 5560                      16.31
#> 5561                      38.19
#> 5562                      16.41
#> 5563                      13.33
#> 5564                       18.8
#> 5565                      35.63
#> 5566                      17.15
#> 5567                         15
#> 5568                      19.14
#> 5569                       30.1
#> 5570                      15.96
#> 5571                      13.12
#> 5572                      18.52
#> 5573                      39.27
#> 5574                      22.22
#> 5575                      17.27
#> 5576                      26.94
#> 5577                      42.41
#> 5578                      19.77
#> 5579                      16.65
#> 5580                      23.24
#> 5581                      36.19
#> 5582                      16.66
#> 5583                      14.42
#> 5584                      18.72
#> 5585                      32.55
#> 5586                      18.53
#> 5587                      15.77
#> 5588                      20.74
#> 5589                      37.61
#> 5590                      17.77
#> 5591                      14.99
#> 5592                      20.42
#> 5593                      38.17
#> 5594                      19.25
#> 5595                      16.73
#> 5596                      21.67
#> 5597                      31.35
#> 5598                      16.86
#> 5599                      14.45
#> 5600                      17.65
#> 5601                      37.44
#> 5602                      18.38
#> 5603                      15.93
#> 5604                      20.49
#> 5605                      35.11
#> 5606                      15.99
#> 5607                      13.29
#> 5608                      18.87
#> 5609                      37.59
#> 5610                      16.62
#> 5611                      14.41
#> 5612                      19.11
#> 5613                      36.39
#> 5614                      20.07
#> 5615                      17.89
#> 5616                      21.88
#> 5617                      34.52
#> 5618                      17.91
#> 5619                      16.55
#> 5620                      18.62
#> 5621                      32.55
#> 5622                      20.76
#> 5623                      18.62
#> 5624                      22.46
#> 5625                      38.98
#> 5626                      19.33
#> 5627                      17.27
#> 5628                      21.15
#> 5629                      26.42
#> 5630                      14.04
#> 5631                      12.31
#> 5632                      14.71
#> 5633                      35.65
#> 5634                      19.75
#> 5635                      17.45
#> 5636                      21.82
#> 5637                      31.88
#> 5638                      17.15
#> 5639                      15.46
#> 5640                      18.65
#> 5641                      32.85
#> 5642                      15.56
#> 5643                      13.38
#> 5644                      17.19
#> 5645                      38.52
#> 5646                       20.7
#> 5647                      20.22
#> 5648                      20.87
#> 5649                      51.66
#> 5650                      17.49
#> 5651                      16.73
#> 5652                      17.67
#> 5653                      36.41
#> 5654                      12.85
#> 5655                       9.58
#> 5656                      16.48
#> 5657                      27.96
#> 5658                      18.04
#> 5659                      15.72
#> 5660                      19.62
#> 5661                      40.71
#> 5662                      14.69
#> 5663                      12.93
#> 5664                      15.41
#> 5665                      38.93
#> 5666                      20.05
#> 5667                      19.86
#> 5668                      19.13
#> 5669                      43.91
#> 5670                      18.13
#> 5671                      14.86
#> 5672                      21.06
#> 5673                      45.63
#> 5674                      17.07
#> 5675                      14.38
#> 5676                      19.46
#> 5677                      44.08
#> 5678                      19.57
#> 5679                      18.42
#> 5680                      19.82
#> 5681                       36.5
#> 5682                      17.83
#> 5683                      13.69
#> 5684                      21.73
#> 5685                      35.98
#> 5686                      19.59
#> 5687                      16.63
#> 5688                      22.13
#> 5689                      34.96
#> 5690                      15.17
#> 5691                      11.12
#> 5692                      19.25
#> 5693                      32.75
#> 5694                      17.16
#> 5695                      11.91
#> 5696                       21.9
#> 5697                      31.43
#> 5698                      18.48
#> 5699                      15.93
#> 5700                      21.01
#> 5701                      39.95
#> 5702                       18.7
#> 5703                      17.45
#> 5704                      19.65
#> 5705                      33.43
#> 5706                      17.53
#> 5707                      12.23
#> 5708                      21.25
#> 5709                      31.38
#> 5710                       13.5
#> 5711                       9.83
#> 5712                      17.15
#> 5713                      25.78
#> 5714                      16.64
#> 5715                       12.5
#> 5716                      20.28
#> 5717                      36.12
#> 5718                      20.08
#> 5719                      14.72
#> 5720                      26.89
#> 5721                      36.03
#> 5722                      19.52
#> 5723                      13.67
#> 5724                      23.94
#> 5725                      54.32
#> 5726                       21.5
#> 5727                         17
#> 5728                      26.18
#> 5729                      33.01
#> 5730                      24.02
#> 5731                      18.62
#> 5732                      28.85
#> 5733                      39.54
#> 5734                      16.71
#> 5735                      13.21
#> 5736                      19.71
#> 5737                      35.08
#> 5738                      20.69
#> 5739                      16.36
#> 5740                      24.31
#> 5741                      39.38
#> 5742                      16.21
#> 5743                      11.16
#> 5744                      21.53
#> 5745                       33.1
#> 5746                      19.71
#> 5747                      15.86
#> 5748                      22.94
#> 5749                      39.95
#> 5750                      17.41
#> 5751                       12.7
#> 5752                       22.5
#> 5753                      29.38
#> 5754                      15.23
#> 5755                      11.81
#> 5756                      18.52
#> 5757                      31.95
#> 5758                      17.69
#> 5759                      13.47
#> 5760                      21.79
#> 5761                      36.36
#> 5762                      18.84
#> 5763                      13.46
#> 5764                      24.13
#> 5765                      35.43
#> 5766                      16.58
#> 5767                      10.53
#> 5768                       21.6
#> 5769                      38.95
#> 5770                      22.11
#> 5771                      16.57
#> 5772                      28.26
#> 5773                      41.09
#> 5774                      18.29
#> 5775                      12.76
#> 5776                      23.82
#> 5777                      33.54
#> 5778                      17.38
#> 5779                      12.41
#> 5780                       23.2
#> 5781                      34.41
#> 5782                       20.5
#> 5783                      14.09
#> 5784                      26.56
#> 5785                      35.91
#> 5786                      20.85
#> 5787                      15.85
#> 5788                      24.07
#> 5789                      43.35
#> 5790                      17.47
#> 5791                      12.27
#> 5792                      22.73
#> 5793                      32.04
#> 5794                      20.33
#> 5795                      14.88
#> 5796                      26.26
#> 5797                      32.44
#> 5798                          c
#> 5799                          c
#> 5800                      16.52
#> 5801                      11.18
#> 5802                      22.25
#> 5803                      29.63
#> 5804                      16.69
#> 5805                      12.09
#> 5806                      20.49
#> 5807                      34.06
#> 5808                      19.73
#> 5809                      14.41
#> 5810                      23.52
#> 5811                      31.06
#> 5812                       19.9
#> 5813                      14.44
#> 5814                      25.03
#> 5815                      40.79
#> 5816                      19.32
#> 5817                      13.33
#> 5818                      25.82
#> 5819                      35.01
#> 5820                      17.53
#> 5821                      12.85
#> 5822                      22.05
#> 5823                      34.73
#> 5824                      18.62
#> 5825                      14.73
#> 5826                      22.28
#> 5827                      35.35
#> 5828                      20.68
#> 5829                      15.89
#> 5830                      25.06
#> 5831                      34.29
#> 5832                      20.94
#> 5833                      15.72
#> 5834                      26.17
#> 5835                      35.69
#> 5836                      22.28
#> 5837                      16.98
#> 5838                      28.49
#> 5839                       31.7
#> 5840                      22.02
#> 5841                      16.09
#> 5842                      27.37
#> 5843                      37.58
#> 5844                       19.6
#> 5845                      14.81
#> 5846                      24.57
#> 5847                      32.08
#> 5848                      21.14
#> 5849                       18.1
#> 5850                      24.09
#> 5851                      26.46
#> 5852                      20.29
#> 5853                      16.21
#> 5854                      24.25
#> 5855                      33.59
#> 5856                      20.58
#> 5857                      15.38
#> 5858                      23.52
#> 5859                      41.04
#> 5860                      20.62
#> 5861                      16.31
#> 5862                      24.24
#> 5863                      38.95
#> 5864                      18.85
#> 5865                      14.37
#> 5866                      22.17
#> 5867                       32.9
#> 5868                      22.85
#> 5869                      16.91
#> 5870                      28.99
#> 5871                      29.62
#> 5872                       21.8
#> 5873                      15.97
#> 5874                      27.94
#> 5875                       32.7
#> 5876                      18.88
#> 5877                      14.58
#> 5878                      22.97
#> 5879                      30.14
#> 5880                      19.27
#> 5881                      15.13
#> 5882                      23.21
#> 5883                      35.74
#> 5884                      22.56
#> 5885                      16.98
#> 5886                      27.59
#> 5887                      35.14
#> 5888                      16.22
#> 5889                      11.74
#> 5890                      20.39
#> 5891                      38.12
#> 5892                      19.88
#> 5893                      14.47
#> 5894                      25.47
#> 5895                      40.42
#> 5896                      21.51
#> 5897                      18.24
#> 5898                      24.88
#> 5899                      30.32
#> 5900                      16.22
#> 5901                      12.18
#> 5902                      20.45
#> 5903                      32.19
#> 5904                       18.8
#> 5905                       13.6
#> 5906                       24.2
#> 5907                         33
#> 5908                      18.85
#> 5909                      13.64
#> 5910                      24.33
#> 5911                      30.08
#> 5912                      17.46
#> 5913                      11.67
#> 5914                      22.74
#> 5915                      32.09
#> 5916                      19.68
#> 5917                      15.85
#> 5918                      23.21
#> 5919                       34.4
#> 5920                      19.47
#> 5921                      14.63
#> 5922                      24.06
#> 5923                      41.95
#> 5924                      19.63
#> 5925                      17.46
#> 5926                      20.79
#> 5927                      41.34
#> 5928                      20.13
#> 5929                       16.7
#> 5930                      22.49
#> 5931                      42.13
#> 5932                      20.43
#> 5933                      16.57
#> 5934                      24.42
#> 5935                      41.25
#> 5936                      21.48
#> 5937                      17.49
#> 5938                      25.84
#> 5939                      36.65
#> 5940                      17.36
#> 5941                      13.35
#> 5942                      21.32
#> 5943                       38.2
#> 5944                      19.63
#> 5945                      14.82
#> 5946                      24.21
#> 5947                      35.04
#> 5948                      13.56
#> 5949                      11.13
#> 5950                       15.3
#> 5951                      28.16
#> 5952                      18.63
#> 5953                      14.67
#> 5954                      22.42
#> 5955                      34.02
#> 5956                      26.03
#> 5957                      21.48
#> 5958                      32.99
#> 5959                      42.23
#> 5960                      21.71
#> 5961                      17.15
#> 5962                      25.88
#> 5963                      37.66
#> 5964                      18.61
#> 5965                       14.3
#> 5966                      22.98
#> 5967                       35.8
#> 5968                      21.76
#> 5969                      15.24
#> 5970                      28.41
#> 5971                      32.48
#> 5972                      20.58
#> 5973                      15.71
#> 5974                      24.44
#> 5975                      35.01
#> 5976                      18.61
#> 5977                      14.65
#> 5978                      22.67
#> 5979                      31.18
#> 5980                      19.97
#> 5981                      15.63
#> 5982                       24.3
#> 5983                      35.51
#> 5984                      20.65
#> 5985                       16.7
#> 5986                      24.87
#> 5987                      32.08
#> 5988                      17.94
#> 5989                      12.85
#> 5990                      23.36
#> 5991                      28.53
#> 5992                      22.85
#> 5993                      16.54
#> 5994                      30.58
#> 5995                      26.77
#> 5996                      19.95
#> 5997                      15.35
#> 5998                      24.57
#> 5999                      28.49
#> 6000                      18.12
#> 6001                      13.19
#> 6002                      23.11
#> 6003                      30.56
#> 6004                      18.11
#> 6005                      12.97
#> 6006                      23.02
#> 6007                      38.15
#> 6008                      20.89
#> 6009                      15.44
#> 6010                      26.88
#> 6011                       38.6
#> 6012                       19.5
#> 6013                      15.64
#> 6014                      23.64
#> 6015                      31.75
#> 6016                      20.87
#> 6017                      16.76
#> 6018                      24.55
#> 6019                      33.59
#> 6020                      20.94
#> 6021                      16.42
#> 6022                       25.1
#> 6023                      38.22
#> 6024                      23.67
#> 6025                      18.57
#> 6026                      29.08
#> 6027                      40.43
#> 6028                      18.57
#> 6029                      15.05
#> 6030                      21.47
#> 6031                       32.5
#> 6032                      17.24
#> 6033                      14.26
#> 6034                      20.07
#> 6035                      33.78
#> 6036                      19.65
#> 6037                      16.25
#> 6038                      22.81
#> 6039                      35.92
#> 6040                      19.58
#> 6041                      15.05
#> 6042                      24.46
#> 6043                      39.47
#> 6044                      18.29
#> 6045                      14.14
#> 6046                      22.32
#> 6047                      35.06
#> 6048                      20.91
#> 6049                      17.14
#> 6050                      24.26
#> 6051                      37.35
#> 6052                      18.68
#> 6053                       15.9
#> 6054                      20.23
#> 6055                      49.48
#> 6056                      16.46
#> 6057                      10.54
#> 6058                      20.91
#> 6059                      21.23
#> 6060                      18.75
#> 6061                      23.83
#> 6062                      32.87
#> 6063                      19.55
#> 6064                      14.76
#> 6065                      24.25
#> 6066                      35.68
#> 6067                       17.1
#> 6068                      12.89
#> 6069                      20.94
#> 6070                      33.88
#> 6071                      17.34
#> 6072                      13.19
#> 6073                      21.85
#> 6074                      30.06
#> 6075                      16.71
#> 6076                      11.84
#> 6077                      21.85
#> 6078                      29.37
#> 6079                      18.57
#> 6080                      13.65
#> 6081                      22.96
#> 6082                      35.67
#> 6083                      17.99
#> 6084                         14
#> 6085                      22.24
#> 6086                      31.51
#> 6087                      18.87
#> 6088                      15.07
#> 6089                      22.27
#> 6090                      35.76
#> 6091                      15.98
#> 6092                      11.12
#> 6093                      20.88
#> 6094                      33.88
#> 6095                      17.77
#> 6096                      14.25
#> 6097                      20.94
#> 6098                      29.01
#> 6099                      20.32
#> 6100                      15.46
#> 6101                      25.31
#> 6102                      38.17
#> 6103                      18.54
#> 6104                       12.8
#> 6105                      24.33
#> 6106                      37.75
#> 6107                      19.98
#> 6108                      17.06
#> 6109                      21.86
#> 6110                      44.03
#> 6111                      20.38
#> 6112                      17.03
#> 6113                       23.8
#> 6114                      34.06
#> 6115                      19.41
#> 6116                      15.15
#> 6117                      23.93
#> 6118                      30.94
#> 6119                       19.9
#> 6120                      16.61
#> 6121                      23.17
#> 6122                      36.52
#> 6123                      18.34
#> 6124                      13.69
#> 6125                      21.98
#> 6126                      41.16
#> 6127                       20.2
#> 6128                       16.2
#> 6129                      24.02
#> 6130                      34.71
#> 6131                      19.23
#> 6132                      16.97
#> 6133                      21.06
#> 6134                      34.18
#> 6135                      16.94
#> 6136                      12.88
#> 6137                       20.7
#> 6138                      27.72
#> 6139                      17.89
#> 6140                      13.69
#> 6141                      22.07
#> 6142                      32.15
#> 6143                      17.84
#> 6144                      13.19
#> 6145                      21.56
#> 6146                      32.59
#> 6147                      17.61
#> 6148                      13.92
#> 6149                      21.16
#> 6150                       32.7
#> 6151                      18.58
#> 6152                      14.76
#> 6153                      21.99
#> 6154                      33.28
#> 6155                      17.63
#> 6156                      14.69
#> 6157                      20.09
#> 6158                      39.01
#> 6159                      17.99
#> 6160                      15.82
#> 6161                      19.51
#> 6162                      32.56
#> 6163                      17.58
#> 6164                      15.16
#> 6165                      20.34
#> 6166                      30.42
#> 6167                      17.62
#> 6168                      13.24
#> 6169                      22.05
#> 6170                      28.18
#> 6171                      16.66
#> 6172                      12.75
#> 6173                       19.5
#> 6174                      33.63
#> 6175                      16.48
#> 6176                      13.11
#> 6177                      19.79
#> 6178                      33.51
#> 6179                       18.2
#> 6180                      14.64
#> 6181                      21.91
#> 6182                      32.24
#> 6183                      16.23
#> 6184                      12.82
#> 6185                      19.24
#> 6186                      33.27
#> 6187                      18.67
#> 6188                      14.31
#> 6189                      23.07
#> 6190                      30.66
#> 6191                      18.56
#> 6192                      13.71
#> 6193                      23.64
#> 6194                      32.27
#> 6195                      17.85
#> 6196                      15.78
#> 6197                      19.47
#> 6198                      36.93
#> 6199                          c
#> 6200                          c
#> 6201                      18.47
#> 6202                         17
#> 6203                      19.13
#> 6204                       47.8
#> 6205                      14.65
#> 6206                      12.54
#> 6207                      16.12
#> 6208                      37.19
#> 6209                      16.69
#> 6210                      13.79
#> 6211                       18.9
#> 6212                      35.85
#> 6213                      17.32
#> 6214                      15.24
#> 6215                      19.23
#> 6216                      30.21
#> 6217                      16.33
#> 6218                      13.59
#> 6219                      18.77
#> 6220                      39.32
#> 6221                      22.57
#> 6222                      18.05
#> 6223                      26.85
#> 6224                      41.38
#> 6225                      19.91
#> 6226                      16.97
#> 6227                      23.18
#> 6228                      35.79
#> 6229                      16.91
#> 6230                      14.57
#> 6231                      19.13
#> 6232                      31.88
#> 6233                      18.52
#> 6234                       15.8
#> 6235                      20.63
#> 6236                      38.44
#> 6237                      17.95
#> 6238                      15.29
#> 6239                       20.5
#> 6240                      38.52
#> 6241                      19.11
#> 6242                      16.71
#> 6243                      21.44
#> 6244                      29.75
#> 6245                      17.03
#> 6246                      14.44
#> 6247                      18.07
#> 6248                      36.52
#> 6249                      18.52
#> 6250                      16.12
#> 6251                      20.53
#> 6252                      35.66
#> 6253                      16.09
#> 6254                      13.59
#> 6255                      18.76
#> 6256                      36.53
#> 6257                      16.87
#> 6258                      14.58
#> 6259                      19.44
#> 6260                      37.87
#> 6261                      20.24
#> 6262                      18.07
#> 6263                      22.06
#> 6264                       34.4
#> 6265                      18.03
#> 6266                      16.82
#> 6267                      18.59
#> 6268                      32.59
#> 6269                      20.78
#> 6270                       18.9
#> 6271                      22.04
#> 6272                      40.24
#> 6273                      19.53
#> 6274                      17.79
#> 6275                      21.04
#> 6276                      26.19
#> 6277                      14.24
#> 6278                      12.83
#> 6279                       14.6
#> 6280                      35.45
#> 6281                      19.75
#> 6282                      17.46
#> 6283                       21.8
#> 6284                      31.93
#> 6285                      17.42
#> 6286                      15.91
#> 6287                      18.75
#> 6288                      31.92
#> 6289                      15.62
#> 6290                      13.56
#> 6291                      17.14
#> 6292                      37.83
#> 6293                      20.82
#> 6294                      20.47
#> 6295                       20.9
#> 6296                      48.34
#> 6297                      17.75
#> 6298                      17.15
#> 6299                      17.79
#> 6300                      35.62
#> 6301                      13.32
#> 6302                      10.19
#> 6303                      16.76
#> 6304                      28.57
#> 6305                      18.25
#> 6306                      16.13
#> 6307                      19.68
#> 6308                      39.38
#> 6309                      14.87
#> 6310                      13.21
#> 6311                      15.52
#> 6312                       38.6
#> 6313                       20.3
#> 6314                      20.15
#> 6315                      19.34
#> 6316                      44.53
#> 6317                      18.27
#> 6318                      14.99
#> 6319                      21.23
#> 6320                      45.76
#> 6321                      17.26
#> 6322                      14.81
#> 6323                      19.18
#> 6324                      44.57
#> 6325                      19.96
#> 6326                         19
#> 6327                       20.1
#> 6328                      36.13
#> 6329                      17.89
#> 6330                      13.85
#> 6331                      21.68
#> 6332                      35.66
#> 6333                      19.92
#> 6334                      17.17
#> 6335                      22.21
#> 6336                      35.57
#> 6337                      15.12
#> 6338                      11.32
#> 6339                      18.93
#> 6340                      33.33
#> 6341                      17.24
#> 6342                      11.98
#> 6343                         22
#> 6344                      30.99
#> 6345                      18.56
#> 6346                      15.99
#> 6347                       21.1
#> 6348                      40.58
#> 6349                      18.76
#> 6350                      17.66
#> 6351                      19.52
#> 6352                      34.47
#> 6353                      17.51
#> 6354                      12.37
#> 6355                      21.08
#> 6356                      31.84
#> 6357                      13.53
#> 6358                      10.11
#> 6359                      16.85
#> 6360                      26.15
#> 6361                       16.7
#> 6362                      12.64
#> 6363                      20.27
#> 6364                      35.78
#> 6365                      20.35
#> 6366                      14.88
#> 6367                      27.16
#> 6368                      36.03
#> 6369                      19.83
#> 6370                      13.97
#> 6371                      24.36
#> 6372                      53.17
#> 6373                      21.77
#> 6374                       17.4
#> 6375                      26.28
#> 6376                      33.37
#> 6377                      23.96
#> 6378                      18.67
#> 6379                      28.72
#> 6380                      38.56
#> 6381                      16.72
#> 6382                      13.27
#> 6383                      19.64
#> 6384                      35.35
#> 6385                      20.71
#> 6386                       16.5
#> 6387                      24.25
#> 6388                      38.57
#> 6389                      16.26
#> 6390                      11.28
#> 6391                      21.51
#> 6392                      32.46
#> 6393                      19.68
#> 6394                      15.91
#> 6395                      22.87
#> 6396                      38.97
#> 6397                      17.44
#> 6398                      12.82
#> 6399                      22.39
#> 6400                      30.21
#> 6401                      15.33
#> 6402                      12.07
#> 6403                      18.42
#> 6404                      31.92
#> 6405                      17.75
#> 6406                      13.64
#> 6407                       21.7
#> 6408                      36.04
#> 6409                      18.88
#> 6410                      13.57
#> 6411                       24.1
#> 6412                      35.13
#> 6413                       16.7
#> 6414                      10.75
#> 6415                      21.64
#> 6416                      38.83
#> 6417                      22.24
#> 6418                      16.77
#> 6419                      28.28
#> 6420                      41.44
#> 6421                      18.24
#> 6422                      12.84
#> 6423                      23.65
#> 6424                      32.78
#> 6425                      17.47
#> 6426                       12.5
#> 6427                      23.35
#> 6428                      33.02
#> 6429                      20.81
#> 6430                      14.49
#> 6431                      26.81
#> 6432                      35.51
#> 6433                       21.2
#> 6434                      16.23
#> 6435                      24.46
#> 6436                      42.66
#> 6437                      17.63
#> 6438                      12.46
#> 6439                      22.88
#> 6440                      31.93
#> 6441                      20.45
#> 6442                      15.03
#> 6443                      26.36
#> 6444                      31.41
#> 6445                          c
#> 6446                          c
#> 6447                      16.59
#> 6448                      11.28
#> 6449                      22.28
#> 6450                       30.1
#> 6451                      16.67
#> 6452                       12.2
#> 6453                      20.32
#> 6454                      34.24
#> 6455                       19.6
#> 6456                      14.29
#> 6457                      23.39
#> 6458                      30.85
#> 6459                      19.77
#> 6460                      14.34
#> 6461                      24.92
#> 6462                      39.33
#> 6463                      19.29
#> 6464                       13.4
#> 6465                      25.69
#> 6466                      34.79
#> 6467                      17.52
#> 6468                         13
#> 6469                      21.86
#> 6470                      34.69
#> 6471                      18.91
#> 6472                      15.13
#> 6473                      22.45
#> 6474                      35.67
#> 6475                      21.16
#> 6476                      16.47
#> 6477                      25.41
#> 6478                      35.19
#> 6479                      21.83
#> 6480                      16.86
#> 6481                      26.66
#> 6482                      39.22
#> 6483                      22.82
#> 6484                      17.49
#> 6485                      29.04
#> 6486                      32.72
#> 6487                       22.6
#> 6488                      17.16
#> 6489                      27.47
#> 6490                      37.58
#> 6491                       20.2
#> 6492                      15.39
#> 6493                      25.11
#> 6494                      34.36
#> 6495                      21.74
#> 6496                       18.6
#> 6497                       24.7
#> 6498                      28.57
#> 6499                      20.78
#> 6500                      16.85
#> 6501                      24.53
#> 6502                       34.5
#> 6503                      21.07
#> 6504                      16.07
#> 6505                      23.84
#> 6506                      41.55
#> 6507                      20.93
#> 6508                      16.59
#> 6509                      24.66
#> 6510                      38.15
#> 6511                      19.31
#> 6512                      14.81
#> 6513                      22.58
#> 6514                      34.31
#> 6515                      23.16
#> 6516                      17.54
#> 6517                      28.88
#> 6518                      30.63
#> 6519                      22.19
#> 6520                      16.36
#> 6521                      28.25
#> 6522                      34.28
#> 6523                      19.39
#> 6524                      15.17
#> 6525                      23.41
#> 6526                      30.29
#> 6527                      19.68
#> 6528                      15.63
#> 6529                       23.5
#> 6530                      36.24
#> 6531                      23.29
#> 6532                      18.01
#> 6533                      28.09
#> 6534                      34.51
#> 6535                      16.82
#> 6536                       12.5
#> 6537                      20.82
#> 6538                      38.92
#> 6539                      20.08
#> 6540                      14.75
#> 6541                      25.57
#> 6542                      40.42
#> 6543                      21.84
#> 6544                      18.55
#> 6545                      25.18
#> 6546                      31.32
#> 6547                      16.73
#> 6548                      12.76
#> 6549                      20.88
#> 6550                      32.81
#> 6551                       19.3
#> 6552                      14.08
#> 6553                      24.68
#> 6554                      34.09
#> 6555                      19.08
#> 6556                      13.93
#> 6557                      24.48
#> 6558                      31.14
#> 6559                      17.99
#> 6560                       12.2
#> 6561                      23.31
#> 6562                      30.51
#> 6563                      20.15
#> 6564                      16.48
#> 6565                      23.46
#> 6566                      36.04
#> 6567                      19.87
#> 6568                       15.2
#> 6569                      24.28
#> 6570                      41.77
#> 6571                      19.93
#> 6572                      17.79
#> 6573                      21.04
#> 6574                       41.6
#> 6575                      20.53
#> 6576                      17.12
#> 6577                      22.89
#> 6578                      42.19
#> 6579                      20.72
#> 6580                      16.97
#> 6581                      24.54
#> 6582                      42.51
#> 6583                      21.77
#> 6584                      18.07
#> 6585                       25.7
#> 6586                      37.46
#> 6587                      17.79
#> 6588                      14.02
#> 6589                      21.48
#> 6590                      38.14
#> 6591                      20.02
#> 6592                      15.38
#> 6593                      24.32
#> 6594                      36.87
#> 6595                      13.79
#> 6596                      11.45
#> 6597                      15.47
#> 6598                      27.81
#> 6599                      19.22
#> 6600                       15.4
#> 6601                      22.85
#> 6602                      34.74
#> 6603                      26.58
#> 6604                      22.03
#> 6605                      33.49
#> 6606                      43.31
#> 6607                      21.98
#> 6608                      17.58
#> 6609                      25.96
#> 6610                      37.97
#> 6611                      18.97
#> 6612                      14.64
#> 6613                      23.37
#> 6614                      36.03
#> 6615                      22.08
#> 6616                      15.67
#> 6617                      28.61
#> 6618                      32.89
#> 6619                      21.15
#> 6620                      16.31
#> 6621                      24.94
#> 6622                      35.85
#> 6623                      19.04
#> 6624                      15.15
#> 6625                      23.03
#> 6626                      31.41
#> 6627                      20.41
#> 6628                      16.23
#> 6629                      24.53
#> 6630                       36.4
#> 6631                      20.93
#> 6632                      17.12
#> 6633                      25.01
#> 6634                      31.82
#> 6635                      18.36
#> 6636                      13.38
#> 6637                      23.65
#> 6638                      29.41
#> 6639                      23.72
#> 6640                       17.5
#> 6641                      31.26
#> 6642                      30.32
#> 6643                       20.4
#> 6644                      15.79
#> 6645                      24.93
#> 6646                      31.69
#> 6647                      18.52
#> 6648                      13.87
#> 6649                      23.24
#> 6650                      30.25
#> 6651                      18.48
#> 6652                      13.63
#> 6653                      23.11
#> 6654                      37.87
#> 6655                       21.6
#> 6656                      16.22
#> 6657                      27.47
#> 6658                      41.36
#> 6659                      19.68
#> 6660                      16.12
#> 6661                      23.41
#> 6662                      33.41
#> 6663                       21.5
#> 6664                      17.58
#> 6665                      24.94
#> 6666                      34.66
#> 6667                      21.37
#> 6668                      17.05
#> 6669                      25.33
#> 6670                      38.46
#> 6671                      24.14
#> 6672                      19.18
#> 6673                      29.34
#> 6674                      42.11
#> 6675                      18.96
#> 6676                      15.65
#> 6677                      21.63
#> 6678                      33.65
#> 6679                      17.64
#> 6680                      14.72
#> 6681                       20.4
#> 6682                      34.56
#> 6683                      20.02
#> 6684                      16.74
#> 6685                      23.03
#> 6686                      36.44
#> 6687                      20.11
#> 6688                      15.79
#> 6689                       24.7
#> 6690                       41.3
#> 6691                      18.71
#> 6692                      14.69
#> 6693                      22.61
#> 6694                      35.18
#> 6695                      21.27
#> 6696                      17.72
#> 6697                      24.33
#> 6698                      38.38
#> 6699                       18.7
#> 6700                      15.89
#> 6701                      20.35
#> 6702                      48.56
#> 6703                      16.89
#> 6704                      11.26
#> 6705                       21.1
#> 6706                      21.73
#> 6707                      19.16
#> 6708                      24.43
#> 6709                      32.92
#> 6710                       20.1
#> 6711                      15.54
#> 6712                      24.51
#> 6713                      36.54
#> 6714                      17.51
#> 6715                      13.39
#> 6716                      21.27
#> 6717                      34.56
#> 6718                      17.88
#> 6719                       13.9
#> 6720                      22.22
#> 6721                      29.76
#> 6722                      17.11
#> 6723                      12.42
#> 6724                      22.05
#> 6725                      29.74
#> 6726                       18.8
#> 6727                      14.07
#> 6728                      23.01
#> 6729                      35.41
#> 6730                      18.63
#> 6731                      14.74
#> 6732                      22.78
#> 6733                      31.67
#> 6734                      19.28
#> 6735                      15.64
#> 6736                       22.5
#> 6737                      35.99
#> 6738                      16.04
#> 6739                      11.39
#> 6740                      20.72
#> 6741                      33.42
#> 6742                      18.53
#> 6743                      15.17
#> 6744                      21.54
#> 6745                      29.43
#> 6746                      20.92
#> 6747                      16.35
#> 6748                      25.57
#> 6749                         38
#> 6750                      18.82
#> 6751                      13.08
#> 6752                      24.59
#> 6753                      38.35
#> 6754                      20.36
#> 6755                      17.62
#> 6756                      22.06
#> 6757                      43.97
#> 6758                      20.73
#> 6759                      17.72
#> 6760                      23.78
#> 6761                      33.25
#> 6762                      19.87
#> 6763                       15.8
#> 6764                      24.24
#> 6765                      30.01
#> 6766                      20.19
#> 6767                      16.95
#> 6768                       23.4
#> 6769                      36.89
#> 6770                      18.57
#> 6771                      14.12
#> 6772                      22.06
#> 6773                      40.21
#> 6774                       20.4
#> 6775                      16.67
#> 6776                      23.87
#> 6777                      35.47
#> 6778                      19.46
#> 6779                      17.27
#> 6780                      21.19
#> 6781                      34.62
#> 6782                      17.62
#> 6783                      13.69
#> 6784                      21.22
#> 6785                      28.86
#> 6786                      18.28
#> 6787                      14.14
#> 6788                      22.34
#> 6789                      33.58
#> 6790                      18.21
#> 6791                      13.72
#> 6792                      21.78
#> 6793                      32.91
#> 6794                      17.67
#> 6795                      14.05
#> 6796                      21.16
#> 6797                      32.64
#> 6798                      18.94
#> 6799                      15.15
#> 6800                      22.35
#> 6801                      32.85
#> 6802                      17.57
#> 6803                      14.43
#> 6804                      20.21
#> 6805                      39.56
#> 6806                      18.18
#> 6807                      16.03
#> 6808                      19.71
#> 6809                      31.79
#> 6810                      18.05
#> 6811                       15.7
#> 6812                      20.79
#> 6813                      28.45
#> 6814                      17.68
#> 6815                      13.47
#> 6816                      21.88
#> 6817                      29.55
#> 6818                      16.83
#> 6819                      13.03
#> 6820                      19.55
#> 6821                      34.71
#> 6822                      16.52
#> 6823                      13.28
#> 6824                      19.69
#> 6825                      33.28
#> 6826                      18.18
#> 6827                      14.71
#> 6828                      21.81
#> 6829                      31.59
#> 6830                       16.3
#> 6831                      12.93
#> 6832                      19.26
#> 6833                      33.68
#> 6834                      18.74
#> 6835                       14.5
#> 6836                         23
#> 6837                      31.24
#> 6838                      18.53
#> 6839                      13.67
#> 6840                      23.63
#> 6841                      31.73
#> 6842                       18.1
#> 6843                      16.12
#> 6844                      19.61
#> 6845                      37.31
#> 6846                          c
#> 6847                          c
#> 6848                      18.71
#> 6849                      17.32
#> 6850                      19.29
#> 6851                      48.14
#> 6852                      14.92
#> 6853                      12.89
#> 6854                       16.3
#> 6855                      37.54
#> 6856                      17.33
#> 6857                      14.59
#> 6858                      19.36
#> 6859                      36.29
#> 6860                      17.51
#> 6861                      15.29
#> 6862                      19.57
#> 6863                      30.34
#> 6864                      16.98
#> 6865                      14.35
#> 6866                       19.3
#> 6867                       39.7
#> 6868                      22.53
#> 6869                      18.02
#> 6870                      26.74
#> 6871                      42.91
#> 6872                      20.34
#> 6873                       17.5
#> 6874                      23.38
#> 6875                       37.2
#> 6876                      16.97
#> 6877                      14.84
#> 6878                      18.92
#> 6879                      32.18
#> 6880                      18.61
#> 6881                      15.97
#> 6882                      20.67
#> 6883                      37.97
#> 6884                      18.29
#> 6885                      15.61
#> 6886                      20.88
#> 6887                      38.39
#> 6888                       19.1
#> 6889                      16.74
#> 6890                      21.38
#> 6891                      30.05
#> 6892                      17.62
#> 6893                      15.26
#> 6894                      18.48
#> 6895                      36.73
#> 6896                      18.36
#> 6897                      16.14
#> 6898                      20.19
#> 6899                      34.75
#> 6900                      16.39
#> 6901                      13.98
#> 6902                      18.93
#> 6903                      36.38
#> 6904                         17
#> 6905                      14.88
#> 6906                      19.37
#> 6907                      36.36
#> 6908                      20.23
#> 6909                      18.01
#> 6910                       22.1
#> 6911                      34.35
#> 6912                      18.52
#> 6913                      17.33
#> 6914                      19.12
#> 6915                      31.52
#> 6916                      21.12
#> 6917                       19.4
#> 6918                      22.13
#> 6919                      40.71
#> 6920                      19.85
#> 6921                      18.49
#> 6922                         21
#> 6923                      26.21
#> 6924                      14.65
#> 6925                      13.63
#> 6926                      14.57
#> 6927                      36.42
#> 6928                      19.88
#> 6929                       17.8
#> 6930                      21.64
#> 6931                      32.52
#> 6932                      17.62
#> 6933                      16.32
#> 6934                      18.59
#> 6935                      33.09
#> 6936                      15.95
#> 6937                      14.06
#> 6938                      17.19
#> 6939                      39.05
#> 6940                      20.85
#> 6941                      20.53
#> 6942                      20.89
#> 6943                      49.26
#> 6944                      18.13
#> 6945                      17.61
#> 6946                      18.04
#> 6947                      37.69
#> 6948                      13.62
#> 6949                      10.69
#> 6950                      16.84
#> 6951                      27.96
#> 6952                      18.74
#> 6953                      16.62
#> 6954                      20.09
#> 6955                      41.61
#> 6956                      15.21
#> 6957                      13.58
#> 6958                      15.79
#> 6959                      39.74
#> 6960                      20.28
#> 6961                      20.21
#> 6962                      19.21
#> 6963                      44.59
#> 6964                      18.46
#> 6965                       15.2
#> 6966                      21.41
#> 6967                      45.07
#> 6968                      17.59
#> 6969                      15.31
#> 6970                      19.23
#> 6971                      45.12
#> 6972                      20.22
#> 6973                         19
#> 6974                      20.52
#> 6975                         37
#> 6976                      18.05
#> 6977                      14.09
#> 6978                      21.75
#> 6979                      35.84
#> 6980                      20.23
#> 6981                      17.55
#> 6982                      22.48
#> 6983                      35.13
#> 6984                      15.22
#> 6985                       11.6
#> 6986                       18.9
#> 6987                      30.41
#> 6988                       17.4
#> 6989                      12.17
#> 6990                      22.09
#> 6991                      32.09
#> 6992                      18.68
#> 6993                      15.96
#> 6994                      21.45
#> 6995                      39.89
#> 6996                      19.26
#> 6997                      18.22
#> 6998                      19.91
#> 6999                      37.28
#> 7000                      17.68
#> 7001                      12.49
#> 7002                      21.31
#> 7003                      31.76
#> 7004                      13.54
#> 7005                      10.41
#> 7006                      16.55
#> 7007                      25.93
#> 7008                       16.9
#> 7009                      12.86
#> 7010                      20.42
#> 7011                      36.27
#> 7012                      20.52
#> 7013                      14.98
#> 7014                      27.44
#> 7015                      36.24
#> 7016                      19.88
#> 7017                      14.18
#> 7018                      24.33
#> 7019                      52.03
#> 7020                      21.96
#> 7021                      17.55
#> 7022                      26.45
#> 7023                      34.34
#> 7024                      23.94
#> 7025                      18.92
#> 7026                      28.46
#> 7027                      37.73
#> 7028                      17.07
#> 7029                      13.79
#> 7030                       19.8
#> 7031                      36.07
#> 7032                      20.76
#> 7033                      16.64
#> 7034                       24.2
#> 7035                      38.87
#> 7036                      16.25
#> 7037                      11.42
#> 7038                      21.31
#> 7039                      32.83
#> 7040                      19.97
#> 7041                      16.21
#> 7042                      23.12
#> 7043                      39.52
#> 7044                      17.49
#> 7045                      12.94
#> 7046                      22.34
#> 7047                      30.46
#> 7048                      15.54
#> 7049                       12.3
#> 7050                      18.62
#> 7051                      31.66
#> 7052                      17.82
#> 7053                      13.89
#> 7054                      21.57
#> 7055                      35.63
#> 7056                      19.05
#> 7057                      13.83
#> 7058                      24.17
#> 7059                      35.07
#> 7060                      16.99
#> 7061                      11.24
#> 7062                      21.74
#> 7063                      38.83
#> 7064                      22.51
#> 7065                      16.93
#> 7066                       28.7
#> 7067                      41.71
#> 7068                      18.34
#> 7069                      13.02
#> 7070                      23.77
#> 7071                      29.85
#> 7072                      17.87
#> 7073                      12.86
#> 7074                       23.7
#> 7075                      35.76
#> 7076                      21.11
#> 7077                      15.06
#> 7078                      26.85
#> 7079                      35.38
#> 7080                      21.63
#> 7081                      16.26
#> 7082                      25.26
#> 7083                      43.13
#> 7084                      17.74
#> 7085                      12.68
#> 7086                       22.8
#> 7087                      32.99
#> 7088                      20.84
#> 7089                      15.59
#> 7090                      26.56
#> 7091                       32.5
#> 7092                          c
#> 7093                          c
#> 7094                      16.67
#> 7095                      11.47
#> 7096                      22.28
#> 7097                      28.56
#> 7098                      16.64
#> 7099                      12.48
#> 7100                      19.99
#> 7101                      33.77
#> 7102                      19.69
#> 7103                      14.79
#> 7104                      23.16
#> 7105                      30.77
#> 7106                      19.83
#> 7107                      14.41
#> 7108                         25
#> 7109                      38.95
#> 7110                      19.32
#> 7111                      13.51
#> 7112                      25.62
#> 7113                      34.66
#> 7114                      17.69
#> 7115                      13.22
#> 7116                      21.99
#> 7117                      34.58
#> 7118                       18.7
#> 7119                       13.5
#> 7120                      24.32
#> 7121                       35.8
#> 7122                      19.18
#> 7123                      13.26
#> 7124                         26
#> 7125                      32.09
#> 7126                       13.8
#> 7127                       26.6
#> 7128                      28.32
#> 7129                      15.99
#> 7130                      30.76
#> 7131                      29.41
#> 7132                      13.21
#> 7133                      26.14
#> 7134                      36.67
#> 7135                      12.53
#> 7136                      27.81
#> 7137                      29.93
#> 7138                      14.71
#> 7139                       26.2
#> 7140                      22.56
#> 7141                      13.82
#> 7142                      25.66
#> 7143                      33.59
#> 7144                      10.91
#> 7145                      22.88
#> 7146                      37.42
#> 7147                      14.87
#> 7148                      26.67
#> 7149                      38.65
#> 7150                      11.35
#> 7151                      21.36
#> 7152                      27.68
#> 7153                      13.61
#> 7154                       28.5
#> 7155                      24.79
#> 7156                       13.8
#> 7157                      28.77
#> 7158                      34.15
#> 7159                      10.54
#> 7160                      24.19
#> 7161                      25.93
#> 7162                      18.48
#> 7163                      13.29
#> 7164                      24.53
#> 7165                      35.43
#> 7166                      15.24
#> 7167                      29.56
#> 7168                      33.26
#> 7169                       9.09
#> 7170                      20.54
#> 7171                      37.61
#> 7172                      14.56
#> 7173                      24.89
#> 7174                      37.88
#> 7175                      16.35
#> 7176                      30.39
#> 7177                      30.57
#> 7178                       9.86
#> 7179                      22.05
#> 7180                      35.76
#> 7181                      11.42
#> 7182                      25.23
#> 7183                      31.18
#> 7184                      10.46
#> 7185                      23.66
#> 7186                      24.01
#> 7187                        8.8
#> 7188                      22.15
#> 7189                      30.19
#> 7190                       14.1
#> 7191                      23.96
#> 7192                       34.7
#> 7193                       12.3
#> 7194                      25.66
#> 7195                      41.85
#> 7196                      16.11
#> 7197                      22.78
#> 7198                      42.51
#> 7199                      15.05
#> 7200                      23.54
#> 7201                      41.89
#> 7202                      14.72
#> 7203                      27.48
#> 7204                      47.28
#> 7205                      16.15
#> 7206                      27.82
#> 7207                      36.85
#> 7208                      11.65
#> 7209                      23.43
#> 7210                      34.42
#> 7211                      12.48
#> 7212                      25.92
#> 7213                      32.56
#> 7214                       9.42
#> 7215                      16.35
#> 7216                      28.59
#> 7217                      12.41
#> 7218                      23.81
#> 7219                      30.47
#> 7220                      19.71
#> 7221                      32.73
#> 7222                      40.18
#> 7223                       15.7
#> 7224                       27.7
#> 7225                      38.26
#> 7226                      12.82
#> 7227                      25.49
#> 7228                      35.52
#> 7229                      13.37
#> 7230                      28.59
#> 7231                      32.83
#> 7232                      14.67
#> 7233                      25.96
#> 7234                      36.39
#> 7235                       12.7
#> 7236                      23.84
#> 7237                      30.11
#> 7238                      19.55
#> 7239                      13.99
#> 7240                      26.11
#> 7241                      34.32
#> 7242                      15.09
#> 7243                      26.82
#> 7244                      35.55
#> 7245                      10.63
#> 7246                      24.17
#> 7247                      24.56
#> 7248                      12.91
#> 7249                      29.63
#> 7250                      18.91
#> 7251                      12.69
#> 7252                      25.17
#> 7253                      26.92
#> 7254                      11.89
#> 7255                      24.62
#> 7256                      24.44
#> 7257                      10.69
#> 7258                      24.61
#> 7259                      39.11
#> 7260                      12.33
#> 7261                      26.94
#> 7262                      37.79
#> 7263                      13.95
#> 7264                      25.47
#> 7265                      30.34
#> 7266                      14.51
#> 7267                      26.01
#> 7268                      36.68
#> 7269                      16.03
#> 7270                      27.41
#> 7271                      34.75
#> 7272                      16.91
#> 7273                      32.15
#> 7274                      36.86
#> 7275                      12.51
#> 7276                      23.18
#> 7277                      25.86
#> 7278                      13.86
#> 7279                      22.44
#> 7280                      33.67
#> 7281                      14.87
#> 7282                      24.51
#> 7283                      36.06
#> 7284                       13.9
#> 7285                      27.23
#> 7286                      38.73
#> 7287                      17.85
#> 7288                      12.58
#> 7289                      23.63
#> 7290                      35.59
#> 7291                      15.35
#> 7292                      25.16
#> 7293                      38.74
#> 7294                      16.98
#> 7295                      23.57
#> 7296                      52.47
#> 7297                       9.23
#> 7298                      18.58
#> 7299                      17.36
#> 7300                      26.62
#> 7301                      36.87
#> 7302                      12.69
#> 7303                      24.27
#> 7304                      35.52
#> 7305                      11.75
#> 7306                      22.43
#> 7307                      33.43
#> 7308                      10.64
#> 7309                      22.49
#> 7310                      29.08
#> 7311                      10.21
#> 7312                      22.54
#> 7313                      27.02
#> 7314                      12.46
#> 7315                      24.75
#> 7316                      36.54
#> 7317                      11.64
#> 7318                      23.43
#> 7319                      30.66
#> 7320                      19.47
#> 7321                      14.41
#> 7322                      24.79
#> 7323                      37.79
#> 7324                      10.34
#> 7325                      22.39
#> 7326                       34.5
#> 7327                      12.36
#> 7328                      22.77
#> 7329                      30.03
#> 7330                      14.41
#> 7331                      28.59
#> 7332                      39.63
#> 7333                      11.66
#> 7334                      24.45
#> 7335                       45.2
#> 7336                      17.58
#> 7337                      26.04
#> 7338                      47.54
#> 7339                       16.5
#> 7340                      26.66
#> 7341                      32.85
#> 7342                      14.83
#> 7343                      26.36
#> 7344                      30.62
#> 7345                      16.01
#> 7346                       25.6
#> 7347                      37.89
#> 7348                      12.76
#> 7349                      23.93
#> 7350                      43.75
#> 7351                      16.53
#> 7352                      28.71
#> 7353                      32.82
#> 7354                      15.49
#> 7355                       21.9
#> 7356                      33.15
#> 7357                      10.53
#> 7358                      21.41
#> 7359                      28.63
#> 7360                      12.87
#> 7361                      24.83
#> 7362                      34.09
#> 7363                      12.54
#> 7364                      23.61
#> 7365                      36.48
#> 7366                      17.97
#> 7367                      12.91
#> 7368                       23.4
#> 7369                      33.54
#> 7370                      14.23
#> 7371                      24.82
#> 7372                       35.5
#> 7373                         16
#> 7374                      22.99
#> 7375                      37.62
#> 7376                      14.99
#> 7377                      22.04
#> 7378                      33.01
#> 7379                      14.58
#> 7380                      22.43
#> 7381                      27.04
#> 7382                      12.91
#> 7383                      25.26
#> 7384                      26.42
#> 7385                      11.56
#> 7386                      20.65
#> 7387                      34.91
#> 7388                      12.31
#> 7389                       21.7
#> 7390                      35.84
#> 7391                      13.31
#> 7392                      24.16
#> 7393                      32.56
#> 7394                      11.72
#> 7395                      22.68
#> 7396                      34.03
#> 7397                      12.69
#> 7398                      24.15
#> 7399                       32.3
#> 7400                      12.45
#> 7401                      25.04
#> 7402                      34.31
#> 7403                       18.8
#> 7404                       15.1
#> 7405                      22.31
#> 7406                      38.15
#> 7407                          c
#> 7408                      17.02
#> 7409                      21.21
#> 7410                      46.14
#> 7411                      11.72
#> 7412                      20.92
#> 7413                      40.25
#> 7414                      12.27
#> 7415                      20.86
#> 7416                       36.2
#> 7417                      15.09
#> 7418                       22.3
#> 7419                      32.59
#> 7420                       11.9
#> 7421                         21
#> 7422                      36.66
#> 7423                       16.1
#> 7424                      30.78
#> 7425                      46.42
#> 7426                      16.25
#> 7427                      27.23
#> 7428                      35.82
#> 7429                      14.71
#> 7430                      24.31
#> 7431                      32.27
#> 7432                         15
#> 7433                      24.16
#> 7434                      39.18
#> 7435                       14.9
#> 7436                      22.76
#> 7437                      36.28
#> 7438                      15.38
#> 7439                      23.16
#> 7440                      30.61
#> 7441                      15.99
#> 7442                       22.7
#> 7443                      38.46
#> 7444                      15.78
#> 7445                      24.47
#> 7446                      38.09
#> 7447                      12.84
#> 7448                      22.74
#> 7449                      36.87
#> 7450                      12.89
#> 7451                      20.29
#> 7452                      37.85
#> 7453                      17.85
#> 7454                      24.26
#> 7455                      37.75
#> 7456                      15.61
#> 7457                      21.86
#> 7458                       34.5
#> 7459                      19.74
#> 7460                      26.88
#> 7461                      40.28
#> 7462                      17.12
#> 7463                      27.07
#> 7464                      28.28
#> 7465                      11.57
#> 7466                       18.4
#> 7467                      38.68
#> 7468                         17
#> 7469                      23.61
#> 7470                       33.5
#> 7471                      14.83
#> 7472                      20.44
#> 7473                      34.88
#> 7474                         12
#> 7475                      19.46
#> 7476                      41.45
#> 7477                      20.24
#> 7478                      22.37
#> 7479                      54.55
#> 7480                      17.07
#> 7481                      20.83
#> 7482                      47.35
#> 7483                       8.71
#> 7484                      17.48
#> 7485                      29.14
#> 7486                         15
#> 7487                      21.27
#> 7488                      38.39
#> 7489                      11.59
#> 7490                      17.31
#> 7491                      37.76
#> 7492                       18.8
#> 7493                      18.85
#> 7494                      41.44
#> 7495                      15.28
#> 7496                      25.18
#> 7497                      45.32
#> 7498                      14.24
#> 7499                      21.07
#> 7500                      45.04
#> 7501                      20.02
#> 7502                      25.05
#> 7503                      37.28
#> 7504                      18.33
#> 7505                      12.87
#> 7506                      24.06
#> 7507                      36.68
#> 7508                      15.95
#> 7509                      23.96
#> 7510                      34.16
#> 7511                      10.16
#> 7512                      21.37
#> 7513                          c
#> 7514                      11.29
#> 7515                      22.27
#> 7516                      29.54
#> 7517                      16.79
#> 7518                      25.16
#> 7519                      43.99
#> 7520                      16.53
#> 7521                      23.75
#> 7522                       38.3
#> 7523                      12.35
#> 7524                      23.57
#> 7525                      34.56
#> 7526                       9.78
#> 7527                       21.2
#> 7528                         32
#> 7529                       12.5
#> 7530                      24.06
#> 7531                      35.99
#> 7532                      14.11
#> 7533                      31.25
#> 7534                      36.71
#> 7535                      13.17
#> 7536                      26.46
#> 7537                      56.29
#> 7538                       16.7
#> 7539                      28.32
#> 7540                      35.13
#> 7541                      15.48
#> 7542                      29.95
#> 7543                      32.68
#> 7544                      12.26
#> 7545                      23.92
#> 7546                      36.93
#> 7547                      14.89
#> 7548                      26.75
#> 7549                      39.78
#> 7550                      10.01
#> 7551                      22.82
#> 7552                      34.44
#> 7553                      15.04
#> 7554                      25.15
#> 7555                      40.44
#> 7556                      12.36
#> 7557                      24.54
#> 7558                      31.81
#> 7559                      11.07
#> 7560                      20.03
#> 7561                      31.84
#> 7562                      11.98
#> 7563                      24.29
#> 7564                      34.82
#> 7565                      18.94
#> 7566                      12.45
#> 7567                      25.97
#> 7568                      35.38
#> 7569                      10.39
#> 7570                      23.69
#> 7571                      36.76
#> 7572                      16.72
#> 7573                      30.99
#> 7574                      44.77
#> 7575                      11.66
#> 7576                      25.82
#> 7577                      29.45
#> 7578                       12.4
#> 7579                      24.82
#> 7580                      32.03
#> 7581                      13.32
#> 7582                      29.68
#> 7583                      32.52
#> 7584                      14.48
#> 7585                      24.28
#> 7586                      40.35
#> 7587                      11.27
#> 7588                      25.75
#> 7589                      34.66
#> 7590                      12.43
#> 7591                      27.68
#> 7592                      32.51
#> 7593                          c
#> 7594                      10.63
#> 7595                      23.43
#> 7596                      32.25
#> 7597                      11.26
#> 7598                      22.96
#> 7599                      36.22
#> 7600                      13.19
#> 7601                      25.17
#> 7602                      30.21
#> 7603                      13.32
#> 7604                      26.48
#> 7605                      41.65
#> 7606                      11.46
#> 7607                      27.77
#> 7608                      33.35
#> 7609                      12.14
#> 7610                      23.43
#> 7611                      32.91
#> 7612                      18.42
#> 7613                      13.41
#> 7614                      23.84
#> 7615                      35.66
#> 7616                      18.96
#> 7617                      13.09
#> 7618                      25.52
#> 7619                      31.95
#> 7620                      13.59
#> 7621                      26.53
#> 7622                      27.34
#> 7623                      15.52
#> 7624                      30.19
#> 7625                      29.86
#> 7626                      12.97
#> 7627                      25.45
#> 7628                      36.46
#> 7629                      12.46
#> 7630                      27.36
#> 7631                       30.1
#> 7632                      14.42
#> 7633                      25.78
#> 7634                      21.79
#> 7635                      13.68
#> 7636                      25.34
#> 7637                      33.29
#> 7638                         11
#> 7639                      22.54
#> 7640                      37.49
#> 7641                      14.63
#> 7642                      26.02
#> 7643                      38.16
#> 7644                       11.3
#> 7645                      20.93
#> 7646                      27.37
#> 7647                      13.58
#> 7648                         28
#> 7649                      25.29
#> 7650                      13.38
#> 7651                      28.01
#> 7652                      34.15
#> 7653                      10.38
#> 7654                      23.64
#> 7655                      25.66
#> 7656                      18.14
#> 7657                      13.17
#> 7658                      23.98
#> 7659                      35.12
#> 7660                      15.15
#> 7661                      28.49
#> 7662                      32.05
#> 7663                       8.93
#> 7664                      19.78
#> 7665                      37.03
#> 7666                      14.18
#> 7667                       24.4
#> 7668                      37.18
#> 7669                      16.39
#> 7670                      29.68
#> 7671                      30.94
#> 7672                       9.78
#> 7673                      21.66
#> 7674                      34.63
#> 7675                      11.44
#> 7676                      24.83
#> 7677                      30.32
#> 7678                      10.33
#> 7679                      23.12
#> 7680                      23.78
#> 7681                       8.62
#> 7682                      21.77
#> 7683                      30.19
#> 7684                      14.01
#> 7685                      23.42
#> 7686                      35.08
#> 7687                      12.25
#> 7688                      24.64
#> 7689                      41.49
#> 7690                      15.88
#> 7691                      22.16
#> 7692                      42.12
#>  [ reached 'max' / getOption("max.print") -- omitted 5353 rows ]